this is my code...
<script runat="server">
Sub linkClk(s As Object, e As EventArgs)
Response.Redirect("Target.aspx=?Name",+textbox1.te xt)
End Sub
</script>
------------------------------------------
and on Target.aspx page...the code is
<script runat="server">
sub page_load
Label1.Text = Request.QueryString("Name")
end sub
</script>
------------------------
is it fine!!!!!!!!!!!!The error i'm recieving..................
Server Error in '/Web_dev/Action' Application.
--------------------------------------------------------------------------------
Input string was not in a correct format.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.FormatException: Input string was not in a correct format.
|