ASP.Net Cases


Menu Expand/Collapse Menu

ASP Table Assembly in Code: For a project, a very elaborate permissions scheme was required. Furthermore, the permissions were volatile: the groups & permissions were expected to change often as the application expanded. I had to assembly in code the permissions handler as a table. This meant putting in an ASP table place holder then building the table from a stored table in a SQL Server database. That was not too difficult but getting back the settings made by the administrator-user was tricky.

The following uses ASP.Net (VS2003), HTML, VB.Net, SQL & ASP Classic techniques. It is very complex, however, I never found a solution in my search of MSDN or other sample libraries on the web. If you need to do a similar assembly in code, this example will help you figure out how to post back to the server the data entered by the user into your on-the-fly controls.

.Net Cases