Are you getting an error message?
One possible problem is that youir querystring is not properly formed in the following line:
Code:
Response.Redirect("gen_licenseLocal.asp?custom=" & SerialNo & "SrNo=" & sn)
It should be as follows:
Code:
Response.Redirect("gen_licenseLocal.asp?custom=" & SerialNo & "&SrNo=" & sn)
Note the ampersand separator used for delimiting the querystring parameters.
Of course, there could be other problems as well.
Woody Z
http://www.learntoprogramnow.com
How to use a forum to help solve problems