Bypassing Web
I need to hide the complexity from users to access an information
webpage, which is normally accessible after filling in a web
form with the correct data.
The address of the information webpage is like
https://external.address.com/info.asp?<numeric code>
where <numeric code> is a number generated by the server.
This number (always different) is generated by the server only when you
open the first web page in your browser, fill in the right values in 2
fields (user, password) and click Login.
View Replies
here is the asp code that redirects.
Conn.Close
Set Conn = Nothing
Response.Redirect("zproduct_catalog_MG_091304.asp")
if parm = "finish" then
end If
But iw ould like this link to bypass this code and move on to the rest of my asp code
here is the link
<A class="NQ_Link" HREF="mypage.asp" name="finish">Go to Quote Form</A>
View Replies
View Related
I have a bit of code which executes an SQL statement.on my webpage. If the execution fails i do not want a standard error coming up that asp normally shows - instead i would like something like
if (cnn.execute) = failed Then
'Do This
End If
View Replies
View Related
Someone told me that one can bypass maxlength attribut of a text box. Is it true?
For instance,
<INPUT NAME=test TYPE=text SIZE=12 maxlength=5>
Is there a way to pass a string longer than 5 characters?
View Replies
View Related