Mvc - How To Set Action Explicitely

Feb 7, 2010

I have 2 views for a input operation in my application.

The first view (lets call it view1) submits a form. Based on the form some operations on database is done and second view(View2) is returned with some other data from the database as a model.

controller action code :

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult View1(FormCollection fc)
{
//database ops to fill vm properties
View2ViewModel vm=new View2ViewModel();
return View("View2", vm);
}

Now, since I return a new view and not a action redirect the url is still http://url/View1 but everything works as it is supposed to.

The problem:

When I submit the form in View2 it calls the View1 action method, not the View2 action method. Probably because the url is still View1. What can I do to call the action View2

View 3 Replies


Similar Messages:

MVC :: Why Synchronous Action Wasn't Executed Until Asynchronous Action Completed

Nov 29, 2010

I'm implement Comet in Asp.net MVC, I used timer to keep Async request in server, Async request will complete when timer elapsed 1 minute and response to client (to avoid 404 error) and then reconnect to Async Controller. I also wanna execute some Synchronous action during Async request was holding, but the problem is: When an Async action was executed and hold by using timer, the Sync Action wasn't called until Async action (comet long-live request) completed. I did test with firefox 3.6 many times, but the result is the same, so strange, Do you know why ? I have a sub some questions : To implement comet, using timer (response after some minutes elapsed) or thread (response after several time sleeping thread) to hold async request, which is better?

View 1 Replies

MVC :: Redirect Action Not Working In Jqgrid Action Results Method

Mar 23, 2011

I am desiging a master and details page from a search page..user can search for something and I need to display the result in jqgrid if the result has more than 1 row or record.. if the result is just one record then i have to directly send then to details page by skiping grid page... I do have an action method for results page and one more action method for Jqgrid data..i am trying to check the row count for the database result and trying to redirect to details action results..but its not working at all..and showing an empty jqgrid..

[Code]....

View 9 Replies

Test That A Controller Action Simply Returns A Link To Another Action?

Apr 29, 2010

Lets say I have a simple controller for ASP.NET MVC I want to test. I want to test that a controller action (Foo, in this case) simply returns a link to another action (Bar, in this case).How would you test TestController.Foo? (either the first or second link)

My implementation has the same link twice. One passes the url throw ViewData[]. This seems more testable to me, as I can check the ViewData collection returned from Foo(). Even this way though, I don't know how to validate the url itself without making dependencies on routing.The controller:

public class TestController : Controller
{
public ActionResult Foo()[code].....

View 1 Replies

MVC :: Create Action Not Carrying Model Across To Http Action

Jun 12, 2010

My httppost action doesnt seem to have received my model. The code is below;

[Code]....

i put a breakpoint on the line; return RedirectToAction("Error", "Dashboard"); and i found that appQualif carried no values whatsoever from the form i submitted..

View 5 Replies

How To Pass Parameters To An Action Using Html.Action() In MVC?

Jun 30, 2010

I've been using Html.Action("ActionName", "ControllerName") to invoke child actions across controllers without needing to have the view in ViewsShared. This has been working great for displaying things like session or cookie information.

Instead of just accessing cookies, I would like to pass additional parameters to Html.Action("ActionName", "ControllerName") so the action can execute different code based on the the data passed to the original view.

Should I be using a different method to pass parameters to a child action in a different controller?

View 1 Replies

MVC :: Controller Invokes GET Action Instead Of POST Action

May 20, 2010

I'm trying to add file upload functionality to a page. I've got a form that posts the selected file to a controller with a 'savefile' method. But if I don't add a get version of 'savefile' I'll get a 404 error. Here is the form code which is presented on the Index page:

[Code]....

And here is the controller code:

[Code]....

Intuitively I don't think I should need a GET version of SaveFile but if omit it I get a 404 error when the form posts. Why should I need a GET version of SaveFile when all I want is to post a form and save the file?

View 4 Replies

MVC :: Dynamically Adding Action Filter To Action?

Jun 21, 2010

Does any one know how to dynamically add ActionFilter to an Action?

View 3 Replies

MVC :: Determine Which Action Invoked Particular Action?

Nov 12, 2010

I have a controller with a bunch of actions as such:

[Code]....

I'm looking for a way to find out which action invoked the other: for instance, when redirecting to Action1, I need to know whether it is coming from clicking "next" button at Action0 or clicking "back" button at Action2. This is is to avoid performing Action1 twice (My app is like a wizard, if I click back button at Action2, I don't want to execute Action1 again).

View 1 Replies

How To Tell Create Button To Send To An Action Named Create And To Edit To An Action

Mar 14, 2010

I'm a newbie into MVC and I am like only on chapter 7 in ASP.NET MVC Unleashed so be easy with m

[Code]....

how do I tell Create Button to send to an Action named Create and to Edit to an Action named Edit on the same form?I guess it is possible on ASP.NET MVC if it is possible on ASP.NET Webforms

View 6 Replies

MVC :: How To Call One Action From Another Action

Mar 31, 2010

I have a view MemberProfile like this

<% using (Html.BeginForm()
)
{ %>
<fieldset>
<p>FirstName :<%=Html.TextBox("FirstName", Model.FirstName) %></p>
<p>Last Name : <%=Html.TextBox("LastName", Model.LastName)%></p>
[code]...

View 1 Replies

MVC :: How To Redirect From Action To Another Action

Feb 3, 2011

I have a page with three partial views. On the first ascx, I want some data posted when a user clicks on "submit" button, and send that data to another POST action "search" and search the db with that data, the final output should be the view returned by "search". How do I do this?

View 3 Replies

MVC :: Action Method Returning An ActionResult Used In A Action Method?

Aug 27, 2010

I have the Index action method calling a method that itself is an action method.

Example :

[Code]....

What to do in this case ?

View 10 Replies

MVC :: Two Different Action With The Same Name?

Sep 28, 2010

I have two actions with the same name:

[Code]....

I think everything clear here. But I don't like that parameter int k which I never use and which I pasted in order to create another function which will be launched when some data was posted to that action.

View 2 Replies

MVC :: Images Don't Appear If The Action Isn't Specified In The Url ?

Jul 29, 2010

I have a problem, whereby if I browse to a page using a url of the form: site/home.mvc/Index where Index is an action on the Home controller, my page displays as I would expect.

However, if I browse to site/home.mvc the page loads, all except for my images which are replaced by red crosses.

View 3 Replies

MVC :: How To Get A Preview Action

Oct 28, 2010

there is an Account/SignOut link in Home/Index page,if i click this link ,in action SignOut,how to get the preview action Home/Index?

View 2 Replies

C# - MVC Action With ApplicationPath?

Mar 20, 2010

i'm creating a mvc application and i'll use under subdomain like http://myapp.mycompany.com

This subdomain is pointing to app subdirectory, but my actions are always generated with applicationPath (subdirectory) like:

http://myapp.mycompany.com/myapp/Home/About
// I want just this without additional paths
http://myapp.mycompany.com/Home/About
Is there any configuration related to this?
Is this the correct way to generate links?
<%= Html.ActionLink("About", "About", "Home") %>

View 2 Replies

MVC: How To Get The Previous Action Name

May 6, 2010

I can get the current action name by using the following code

var currentActionName = ControllerContext.RouteData.GetRequiredString("action");

but is it possible to get the previous action name as well?

View 1 Replies

MVC :: Url Becomes Wrong When Using Id On Action?

Jan 12, 2010

I have the following in my JQuery code:

icon.image = "../Contents/Image/GoogleMapMarker_Icon.png";

This works fine when I am on the url:

http://localhost:65125/Center

But if I pass an Id to the action and get the following url:

http://localhost:65125/Center/3

The image is not loaded and I get a 404 error. I was checking with with Firebug and I get:

http://localhost:65125/Center/Index/Contents/Image/Marker_Icon.png

Instead of:

http://localhost:65125/Contents/Image/Marker_Icon.png

View 7 Replies

How To Get The Id Value In Controller / Action / Id

Sep 24, 2010

I have an edit application view, and it can be found at the following URL:

http://localhost:17262/Application/EditApplication/1

1 equals the application ID.

Also on the page I have a link that goes to another view to add an assistant for the application. I want to pass it the application ID so that the new assistant can be "linked" to this application. How would I get the value of 1 and add it to my action link? This is what I have in my HTML so far:

<%: Html.ActionLink("Add New Assistant", "Create", "Assistant", new { applicationID = "id" }, null) %>

View 1 Replies

MVC :: How To Get Url In Render Action

Mar 8, 2010

On a view I am rendering an action using Render.Action. Is it possible in that action to get the full url from the request came? I mean the full url of the view where the render action is inserted .

View 2 Replies

MVC :: One Action Per Controller?

Jul 9, 2010

If I have a controller with more than one action on, e.g. UserController, then I end up having that class require every dependency of every action. Is there a way I can have one controller per action and yet have the URLs appear the same way they currently do? e.g.MySite.com/User/Edit/1 would remap to User_EditController.Edit

View 1 Replies

MVC :: Action Runs Twice In IE8 Only?

Jun 25, 2010

We hit the problem in our asp.net mvc application where our controller action method would be hit twice in
IE8.

This issue does not occur in both FF and Safari.

We have also disabled javascript during our test and it still hits it twice. The first time it passes model properly whereas the second time the model is null.

It does it across all pages.

Has anyone hit this problem before? Bear in mind it's only in IE8 and it's not javascript related.

View 3 Replies

MVC :: Run A Pop-up Window From An Action?

Nov 3, 2010

I'd like to know how could I run a pop-up window from an action (actionResult)

View 5 Replies

Posting HTML In An MVC Action?

May 7, 2010

So I have a form with a text area on it, and I need to post it. I can't encode it (as far as I know) client side, prior to submit, and it causes the yellow screen of death before reaching the HttpPost action handler.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved