Answers for "aspx get url variable"

C#
0

aspx receive variable from url

string value = Request.QueryString("hello");
// or if this doesn't work
string value = Request.QueryString["hello"];
Posted by: Guest on May-04-2021

C# Answers by Framework

Browse Popular Code Answers by Language