i have 2 aspx pages. first one has two hidden input fields as follows. input id="ad" name="ad" type="hidden" value="<%=Request.QueryString("ad") & "" %>" /> input id="bd" name="bd" type="hidden" value="<%=Request.QueryString("bd") & "" %>" />
Now when this lands on the next page, I need to pick up these values, so basically - dim a1 as integer=0, b1 as integer=0. a1 = ad.value b1 = bd.value
i'm new to this, so can someone help me with this.