my project with ASP classic get parameter with this code:
protected void Page_Load(object sender, EventArgs e)
{
RefIdLabel.Text = Request.Params["RefId"];
}
but in ASP.NET MVC 3 with Httppost method not working to get parameter and display error 404 not found . parameter is null.
[HttpPost]
public ActionResult callbackfrombank()
{
string RefId = Request.Params["RefId"];
}
why? please help me. thanks ...
- post parameter from another server to my server.