I am sending a http get request from server side to another site. How can I encrypt all data before sending the request? How can I decrypt the parameters in the second site to read them back? What encryption do we generally use for this?
var response = HttpContext.Current.Response;
response.Redirect(string.Format("http://localhost:58372/Testsite?type={0}&requestxml={1}", type, requestXML));