Sep 23, 2005 #1 waymond Programmer Joined Mar 1, 2005 Messages 118 Location 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 Joined Mar 10, 2005 Messages 5,548 Location 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