问一个菜鸟问题!!
请问我在一个页面中放了一个textbox把它的值赋给session("name"),然后转到另一个页面此页面中有个button1代码如下,可我在第一个页面textbox中已经输入了值,但转到这个页面时它只会执行Catch ex As Exception中的Response.Redirect("reglog.htm"),如果在第一个页面textbox中不填值它也是执行Response.Redirect("reglog.htm"),不管有无值它都是执行这句,请问这是怎么回啊?
Private Sub button1_click(...)
Try
If Session("name").ToString <> "" Then
Response.Redirect("newmessage.aspx?zl=" & Request.QueryString("sorts"))
End If
Catch ex As Exception
Response.Redirect("reglog.htm")
End Try
end sub