Sep 23, 2005 #1 waymond Programmer Mar 1, 2005 118 US I am new to asp how can I create a web page that says under construction? Is there anywhere I can find an image for it and insert it into the code. thank you
I am new to asp how can I create a web page that says under construction? Is there anywhere I can find an image for it and insert it into the code. thank you
Sep 23, 2005 #2 DotNetGnat Programmer Mar 10, 2005 5,548 IN you can do this with just html, you dont need ASP. but if you DO want to use ASP then you can use response.write statments...something like this... <% Response.Write "Page is under construction" %> and you can find lot of "under construction" images online... -DNG Upvote 0 Downvote
you can do this with just html, you dont need ASP. but if you DO want to use ASP then you can use response.write statments...something like this... <% Response.Write "Page is under construction" %> and you can find lot of "under construction" images online... -DNG