Automatic page generation.
-
Hi i'm looking for a series of useful and practical tutorials which demonstrates how to generate .aspx pages automatically using xsl (or better technologies to accomplish this). i found this article[^], but it's not useful for me. my goal is generate Insert,Update,Delete,Report pages base on my data in database. my another scenario is that those page should have masterPage and can customizable with third party controls. i can do this via string templates in my code, but its very hard-coded and dosn't readability. any help would be great appreciated.
-
Hi i'm looking for a series of useful and practical tutorials which demonstrates how to generate .aspx pages automatically using xsl (or better technologies to accomplish this). i found this article[^], but it's not useful for me. my goal is generate Insert,Update,Delete,Report pages base on my data in database. my another scenario is that those page should have masterPage and can customizable with third party controls. i can do this via string templates in my code, but its very hard-coded and dosn't readability. any help would be great appreciated.
An aspx page itself capable to generate dynamic html using the server side code, xsl also doing the same thing. Both are produce html as output. The final output send to client browser is always html. So what you mean by dynamic pages? Do you want to display page names on browser address bar that are not in server? In that case you can use url rewriting.
-
An aspx page itself capable to generate dynamic html using the server side code, xsl also doing the same thing. Both are produce html as output. The final output send to client browser is always html. So what you mean by dynamic pages? Do you want to display page names on browser address bar that are not in server? In that case you can use url rewriting.
Hi Kannan Ar no, i don't do that. i want to create a web application base on database schema, my app generate pages for that web application which do CRUD commands for each objects that user selected (New, Edit, Display and ShowList pages for each table/view). i want to generate these pages automaticallu to free developer from hard coding for CRUD scenarios.
-
Hi Kannan Ar no, i don't do that. i want to create a web application base on database schema, my app generate pages for that web application which do CRUD commands for each objects that user selected (New, Edit, Display and ShowList pages for each table/view). i want to generate these pages automaticallu to free developer from hard coding for CRUD scenarios.
So you want separate web pages for each table in database. Since the tables in a database are fixed number, why do you want to create additional pages at runtime? They might be also fixed number right? I can't see any benefits on such an implementation. I am sorry may be I am not an expert on this subject.
-
Hi Kannan Ar no, i don't do that. i want to create a web application base on database schema, my app generate pages for that web application which do CRUD commands for each objects that user selected (New, Edit, Display and ShowList pages for each table/view). i want to generate these pages automaticallu to free developer from hard coding for CRUD scenarios.
-
ake a look at Dynamic Data Videos[^]
Alexei Rodriguez