G
Guest
is it possible (how) to build a asp.net page on the fly?
i.e.: I have a db with the controls I want to add to it:
1. TextBox - name "ABC" - Text "CDE" - Left 10 - Top - 30
2. Button - name "BT1" - Text "TXT" - Left 30 - Top 100
I have the following issue...
I am trying to build a simple CRM tool... - I've done this before in VB
(Client-Server) - and I thought it would be great in asp.net (c#)...
so far - no problem...
one of the featurings of the system is to build the scripts (some admin
builds the layout of some scripting page - labels, checkboxes, textboxes).
The regular user has to fill it and the information has to be stored in a db.
if I build my own the scripts (aspx pages) - no problem...
but I do have to let this "admin" built it at runtime...
so he/she has to login, set the controls he/she wants to display, set their
position and the associated field to the db...
the only way I found (and I haven't tried it yet) is to take the compiler
within the server and compile every time the admin creates/changes something
i.e.: I have a db with the controls I want to add to it:
1. TextBox - name "ABC" - Text "CDE" - Left 10 - Top - 30
2. Button - name "BT1" - Text "TXT" - Left 30 - Top 100
I have the following issue...
I am trying to build a simple CRM tool... - I've done this before in VB
(Client-Server) - and I thought it would be great in asp.net (c#)...
so far - no problem...
one of the featurings of the system is to build the scripts (some admin
builds the layout of some scripting page - labels, checkboxes, textboxes).
The regular user has to fill it and the information has to be stored in a db.
if I build my own the scripts (aspx pages) - no problem...
but I do have to let this "admin" built it at runtime...
so he/she has to login, set the controls he/she wants to display, set their
position and the associated field to the db...
the only way I found (and I haven't tried it yet) is to take the compiler
within the server and compile every time the admin creates/changes something