Post data and Redirect on URL in Asp.net
Post data and Redirect on URL in Asp.net
C# Code:
NameValueCollection data = new NameValueCollection();
data.Add("UserName", "val1");
data.Add("MobileNo", "val2");
HttpHelper.RedirectAndPOST(this.Page, "http://mobileapp.co.in:8000/website/responsive", data);
Comments
Post a Comment