What does Request[“ ”] mean?

guessurgyJads

New Member
I came accross this unusual thing, and I'm not sure what it is.There is a place in the code where I found :\[code\]if(IsPostBack == false){ string strInterior = Request["xmlString"];}\[/code\]I have one javascript page which is using xml http object ajax (The project is in asp.net 1.1)This xmlString is a variable in javascript which contains a XML format string and passes it like this:\[code\]var objTrim = createXMLHttpObj();var xmlString = "<UrlXML>";xmlString += "<ID>" + id + "</ID>";url = url + "abc.aspx?trim="; objTrim.open("POST", url + escape(TrimRecordsValue) , true);objTrim.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); objTrim.send("xmlString=" + xmlString);\[/code\]I am not sure what this \[code\]Request["xmlString"]\[/code\] means .This is called in the code behind the page. Any ideas?
 
Back
Top