Tagged Questions
The dynamically-generated-co tag has no wiki summary.
4
votes
2answers
475 views
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?
2
votes
5answers
613 views
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 ...
1
vote
1answer
654 views
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 ...
0
votes
3answers
114 views
Change the value of multiple dynamically PHP generated text-boxes using jquery
I have generated multiple text boxes using PHP with name="student[<?php echo $StudentID ; ?>]".
Now on a button click i want to change the value of all these text boxes using jquery.
How do i ...