Tagged Questions
6
votes
1answer
2k views
What is the difference between [AcceptVerbs(HttpVerbs.Post)] and [HttpPost]?
I can decorate an action either with the [AcceptVerbs(HttpVerbs.Post)]/[AcceptVerbs(HttpVerbs.Get)]
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(string title)
{
// Do Something...
}
...
5
votes
3answers
339 views
Model binding and GET requests?
There are tons of examples for model binding in html forms, but I'm wondering if its possible to, and if so how to, use model binding for ActionLinks/GET requests.
So, given the following model
...
0
votes
4answers
1k views
Passing a variable from [HttpPost] method to [HttpGet] mentod
I am redirecting the view from [HttpPost] method to [HttpGet] method. I have gotten it to work, but want to know if this is the best way to do this.
Here is my code:
[HttpPost]
public ActionResult ...
0
votes
2answers
369 views
need help canonicalizing an HTTP GET form in asp.net mvc
I have a form in an asp.net mvc site that serves 3 purposes: paging, sorting, and searching. These items should all be rendered in the same form, since returning the correct search results depends on ...
0
votes
2answers
771 views
How do I create a httppost getting same parameters from httpget?
I have a controller to show up a model (User) and want to create a screen just with a button to activate. I don't want fields in the form. I already have the id in the url. How can I accomplish this?
0
votes
4answers
530 views
How to limit access to an [HttpGet] ActionResult in ASP.NET MVC?
Imagine I have an ActionResult like this:
[HttpGet]
public ActionResult Cities(string q)
{
//Return a list of cities that matches parameter
}
How do I stop all other sites apart from mine ...
0
votes
1answer
578 views
Get form-values from HTTP-get?
I'm using ASP.NET adn have the following code in my view:
<% using(Html.BeginForm("Search", "Home", FormMethod.Get)) { %>
<%= Html.TextBox("searchText") %>
<input type="submit" ...