dynamically-generated-co

What's the best way to send a lot of checkboxes to the client in ASP.Net?

I have the following situation: A user will define a certain filter on a page, and on postback I will query the database using that filter and return a bunch of matching records to the user, each with a checkbox next to it, so he can choose whether to act on each of those records. In Classic ASP / PHP I can generate a lot of controls n...

Using AssemblyBuilder, how can I make all or any of the referenced assemblies embedded instead of linked in the saved assembly?

I have an executing assembly, which generates another assembly dynamically using AssemblyBuilder. The generated assembly consists of functions which simply test the construction of certain classes in the executing assembly. Since the functions in the generated assembly reference classes in the executing assembly, I want to have the exe...

Is it possible to write an assembly which dynamically generates a new class and patches itself with the new class?

Is it possible to write an assembly which dynamically generates/emits a new class and patches itself to include the new class? How? ...