Request ASP.Net

<%@ Page Language=VB Debug=true %>

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    If Len(Request.QueryString("StoreID")) = 0 _
        or Len(Request.QueryString("ProductID")) = 0 Then
        lblMessage1.Text = "One or both of the fields " _
            & "StoreID or ProductID were not found in the " _
            & "QueryString collection!"
    Else
        lblMessage1.Text = "Store ID: " _
            & Request.QueryString("StoreID")
        lblMessage2.Text = "Product ID: " _
            & Request.QueryString("ProductID")
    End If
End Sub



QueryString Sample Page




    id="lblMessage1"
    runat="Server"
    Font-Bold="True"
/>



    id="lblMessage2"
    runat="Server"
    Font-Bold="True"
/>