Hi
How r you all.
I want to know how to make the aspx page at the runtime. Currently my requirement is that User enter the Title of the page, description of the page and name of the page via a text box and in return he will get a aspx page (This is the new page) with the title and description in the body and name of the page in URL.
For example :
(Input)
Current URL : www.xyz.com/hhh/her.aspx
Name of the Page : First
Title of the page : This is my first page
description of the page : This is my first page
(Output)
resulting URL : www.xyz.com/hhh/First.aspx
<html>
<body>
<table>
<tr><td>This is my first page</td></tr>
<tr><td>This is my first page</td></tr>
</body>
Thanks