In my asp.net application one webpage page_load event
protected void Page_Load(object sender, EventArgs e) { try { string data = string.Empty; // Determine if session has Single Sign On credentials if (Request.Form["Rams"] != null) { data = RamsLogin(); } I would like to debug this page from outside the applicaton, How to pass Rams parameter via HTTP post to execute the RamsLogin() method?