Forum Moderators: open
I recently built an html website for a client
They were running asp
I want to do 2 things
Firstly, there is part of the original site, a members only area, that I want to keep as is (have it as asp)
And the menu bar, so it's got my new links to the html
The menu bar appears to be just text with links, but I have no idea how to change it on an asp site.
I have no idea about asp... and am fairly new to webdesign.
Secondly, I want the homepage to be my index.html page
Can I keep the asp for the members only area, if I remove the original default page
So, to sum it up, I want to keep a part of the original site (just change the menu bar to resemble my new one) and have my new html site up there
Hope it's clear
Thanks
Chris
Your page may look something like (in a text editor):
...
<%
'Some asp code
%>
<p>menu bar</p>
<%
'More asp code
%>
<p>more html</p>
...
So you should be able to easily change it to:
...
<%
'Some asp code
%>
<p>your new menu bar copied and pasted</p>
<%
'More asp code
%>
<p>more html</p>
...
Make a backup of the original ASP pages somewhere safe. Use another copy of the ASP pages (renamed) to test your changes in. When you know they work ok, rename your ASP pages to the original file names and upload.
Not sure what you mean about the homepage(?)