I've seen this done on a site =>
http://www.weathershield.com/dealer/default.asp
THATS EXACTLY WHAT I WANT!!!!!!!!!!!!
but the code is hidden,,,,HOW?????
Thanks gurus.....
Printable View
I've seen this done on a site =>
http://www.weathershield.com/dealer/default.asp
THATS EXACTLY WHAT I WANT!!!!!!!!!!!!
but the code is hidden,,,,HOW?????
Thanks gurus.....
I don't understand what you mean. Please elaborate.
I know they are using vb script but when I view source, its not there?
Hi,
They are using ASP hence the .asp extension on the filename. This means that all the scripting is done server side and all that is output to the user is HTML. You cannot get access to the original .asp files and their scripts.
Hope this helps
Shaun
There is a component that will do a lot of work with ZIP codes for you. You can use it in your VB programs or ASP scripts.
http://link-usa.com/zipcode/
Anyone have any sample code that does this?
start up PWS(personal webserver) and add this to a text document, rename the extension to .asp
now type in your browserCode:<%@ language=VBSCRIPT %>
<HTML>
<BODY>
It is:
<%
Response.Write(Time())
%>
</BODY>
</HTML>
wwwroodirectory/Name.asp
replace wwwrootdirectory with your PWS Root directory and then where the file is located,
replace name.asp with the name of your file.
to see this in action, take a look at
http://www9.ewebcity.com/denniswrenn/test.asp
to see another little script I whipped up, take a look at
http://www9.ewebcity.com/denniswrenn/first.asp (this uses 2 pages)
can i see the code for the second link??(query)
sure, sorry about that... hehehe, I forget that you cant see it(which I shouldnt have, because that's the subject of this post :D)
This is the code for first.asp:
This is the code for second.asp:Code:<%@ language=VBSCRIPT %>
<HTML>
<BODY>
<form name="Form" action="second.asp" method="post">
name: <input type="text" name="name" SIZE=30>
<input type="submit">
</form>
</BODY>
</HTML>
Code:<%@ language="VBSCRIPT" %>
<HTML>
<BODY>
Hello <%=Request.form("name")%> Thanks for visiting my page!
</BODY>
</HTML>