Jul 25, 2005 #1 yahoo182 Programmer Joined Jul 5, 2005 Messages 70 Location CA Hi there, I am pretty new to asp.net can anyone tell me how extract a variable form a webrequest, say if i have http://www.domain.com/test.aspx?value1=abc&value2=xyz thanks!
Hi there, I am pretty new to asp.net can anyone tell me how extract a variable form a webrequest, say if i have http://www.domain.com/test.aspx?value1=abc&value2=xyz thanks!
Jul 25, 2005 #2 jbenson001 Programmer Joined Jan 7, 2004 Messages 8,172 Location US dim val1,val2 as string val1 = request.querystring("value1") val2 = request.querstring("value2") Upvote 0 Downvote
Jul 25, 2005 #3 vbkris Programmer Joined Jan 20, 2003 Messages 5,994 Location IN or: val1 = request.params("value1") Known is handfull, Unknown is worldfull Upvote 0 Downvote