string OrderCode=Request.QueryString("OrderCode");
the error is as follows
'System.Web.HttpRequest.QueryString' denotes a 'property' where a 'method' was expected
Help expected Soon please
Printable View
string OrderCode=Request.QueryString("OrderCode");
the error is as follows
'System.Web.HttpRequest.QueryString' denotes a 'property' where a 'method' was expected
Help expected Soon please
You need to use brackets in C# to access the indexer:
Code:string OrderCode=Request.QueryString["OrderCode"];
yeah lethal i have done it