J
JohnC
I have a webapp that allows users to delete/add content on a webpage.
The webpage is accessed like this:
www.abc.com/app/user1/
www.abc.com/app/user2/
where index.aspx is the default page. To do the above though requires
creating a new user subfolder, copying the index.aspx page from the app
folder and renaming it. This can be problematic when I need to update
templates.
www.abc.com/app/usertemplate.aspx //this page is copied and renamed to
for each user.
How can I do the above without creating new directories then copying
and renaming the template file? For example, if someone type in
www.abc.com/app/user1
The default index.aspx page in the app folder would take in the
parameter "user1", look it up in the database and then display the
webpage as above if the name is found.
Thanks,
john
The webpage is accessed like this:
www.abc.com/app/user1/
www.abc.com/app/user2/
where index.aspx is the default page. To do the above though requires
creating a new user subfolder, copying the index.aspx page from the app
folder and renaming it. This can be problematic when I need to update
templates.
www.abc.com/app/usertemplate.aspx //this page is copied and renamed to
for each user.
How can I do the above without creating new directories then copying
and renaming the template file? For example, if someone type in
www.abc.com/app/user1
The default index.aspx page in the app folder would take in the
parameter "user1", look it up in the database and then display the
webpage as above if the name is found.
Thanks,
john