tags:

views:

24

answers:

1

In my asp.net-mvc application, I have a action method that I marked with the ActionVerb=POST.

When I do that, can I still access the querystring or only request.form values?

+2  A: 

You can still access the Query String since it will be send as part of the URL during a POST. That Attribute solely means that that Method can't be run in the absense of a POST.

Martijn Laarman