How to get the Values from URL or Read the value from URL
http://localhost:61526/UserProfile/TxId=12
controller.cs:
string txnId = Request["TxId"];
o/p: txnid=12
http://localhost:61526/UserProfile/TxId=12
controller.cs:
string txnId = Request["TxId"];
o/p: txnid=12
No comments:
Post a Comment