How to pass value through post method from one website to another website

Ranjeet_8
Posted by Ranjeet_8 under ASP.NET category on | Points: 40 | Views : 2362
 
try
{
PostData MyPostdata = new PostData();
MyPostdata.Url = "https://www.xyzCompany.com/verification.aspx";
MyPostdata.Add("UserID", UserID);
MyPostdata.Add("DistributorCode", DCODE);
MyPostdata.Add("SessionID", YourSessionID);
MyPostdata.Post();
}
catch { }

Comments or Responses

Login to post response