Get Html.RenderAction To Call The Get Method On A Post?

Sep 21, 2010

After rendering a view on a Post, a call to RenderAction inside the view will call for the Post method. Is there any way to specify I want to call the Get method instead of the Post?

View 1 Replies


Similar Messages:

.net - Call The RenderAction In Html Helper?

Feb 17, 2010

im extending the htmlhelper. but it i cannot call the renderaction of it.

using System.Text;
using System.Web.Mvc;
using System.Web.Mvc.Html;
public static class ViewHelpers
{
public static string Text(this HtmlHelper htmlHelper, string name, object value, bool isEditMode)
{
htmlHelper.RenderAction(...) //cannot be called
}
}

how can i call the RenderAction?

View 2 Replies

Html.ActionLink() Gives An Empty Link When Use It Inside Html.RenderAction()?

Feb 18, 2010

I have a Microsoft MVC project with an action "Foo" whose view ("Foo.aspx") contains the lines:

<%= Html.ActionLink("mylinktext1", "bar") %>
<%= Html.ActionLink<MyController>(x => x.Bar(), "mylinktext2") %>

When I hit this from a web browser or load it from an AJAX call, it properly returns:

<a href="/bar">mylinktext1</a>
<a href="/Bar">mylinktext2</a>

But when I call the action from another view like this:

<% Html.RenderAction<MyController>(x => x.Foo()); %>

Then the links are rendered without targets.

<a href="">mylinktext1</a>
<a href="">mylinktext2</a>

Why would this be happening, and how do I work around it?

View 1 Replies

C# - Difference Between Url.Action And Html.RenderActionLink And Html.RenderAction

Apr 12, 2010

Whats the difference between Url.Action and Html.RenderActionLink in asp.net mvc?

View 1 Replies

MVC: When To Use Custom HTML Helper Methods Vs Html.RenderAction

Feb 10, 2010

It's a little unclear for me on when to use a custom helper method and when to use RenderAction and also when to simply use ViewData instead. Some of their functions overlap slightly.

For example, if I were to create a Category navigation bar, would I create a new helper method and place that in some partial view? I had initially though of doing this, but I read on some blog to use RenderAction instead.

Assume the list of categories is coming from some data source.

View 4 Replies

Using A RenderAction Method Throws An Exception

Dec 29, 2010

i have this (simple) code

<% Html.RenderAction("Version", "Generic"); %>

in my masterpage of my asp.net mvc 2 app. This method returns the version of the application.

i also have this code in my controller:

class GenericController : BaseController
{
[ChildActionOnly]
public string Version()
{
try
{
string assemblyFile = Assembly.GetCallingAssembly().FullName;
FileInfo fi = new FileInfo(assemblyFile);
string version = fi.LastWriteTime.Year.ToString( ) + fi.LastWriteTime.Month.ToString() + fi.LastWriteTime.Day.ToString();
return version;
}
catch (Exception e)
{
return "1.0";
}
}
}

Now i get this error:
Execution of the child request failed. Please examine the InnerException for more information.

and the innerexcpetion is:
{"The controller for path '/Account/LogOn' was not found or does not implement IController."}

What i was thinking is that maybe the code can't execute because the user is not logged on yet, and tries to redirect to the logon method etc.

So the first thing i was thinking is to grant access in the web.config (like i do with the directory that has the css and images in it, it should also be accessable when you're not logged on:

<location path="Content">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>

but what is the path for this (version) method ?

(or maybe there is another reason for the excpetion.

View 1 Replies

Difference Between Html.RenderAction And Html.Action?

Jun 2, 2010

Does anybody know what's the difference between Html.RenderAction and Html.Action?

View 2 Replies

How To Call Custom Html Helper From A Controller Method

Dec 30, 2010

I'm trying to write a controller method that returns an ActionResult.

In this method, i would like to:

1. call an HTML helper method

2. Capture and store the HTML helper's rendered HTML in a string

3. Return the method with the rendered HTML wrapped as a JSON

How do i call the Html Helper method from my controller method? Simply using the static class HtmlHelper does not work.

View 1 Replies

Javascript - Call C# Method From Standard HTML Input?

Mar 29, 2011

so I've got some HTML that's generated dynamically. Part of it

StringBuilder.Append("<input type="button" onclick="Email_Clicked" value="Email" class="button" runat="server" />");

I need this to call C# method Email_Clicked

How can I accomplish this without asp:button control?

View 5 Replies

Html: Unexpected Call To Method Or Property Access?

Jan 6, 2011

I am trying to use Rounded Corner buttons in my ASP.NET website using AjaxControlToolkit's RoundedCornerExtender. When I use this on a Buton control, I get an error saying "htmlfile: Unexpected call to method or property access" to which I can Break/continue.

When I run the sites, it gives me an error "Unexpected call to mathod or property access".Here's the screenshot: [URL]

View 2 Replies

MVC :: Renderaction Calls Wrong Action Method?

Nov 19, 2010

I'm struggling with renderaction, the problem is that it calls the wrong action method on my controller.On my "Users" controller there are two action methods called edit, one for get and one for post requests:

public virtual ActionResult Edit(int id)
{
//return a view for editing the user

[code]...

View 3 Replies

MVC :: Making An Html Button Call An Action Method With Parameters?

Mar 10, 2011

how to make a stadard HTML button call an action method and pass parameters to it? Can you please show me an example of how to do this? THis is the method:

public ActionResult CCDReview([DefaultValue(1) int CUrrentPage])
{
//method code is here.
}

Yes, my button is wrapped in a form, and it's a "submit" button.

View 9 Replies

MVC Rendering (RenderPartial, RenderAction) Html From Another MVC Application

Sep 9, 2010

I am working in an environment with many teams who are responsible for specific content on pages. Each team is sharing specific information (common class libraries, and master pages) that each are going deliver different types of content.Is it possible for an MVC application to do something similar to RenderPartial and pass a model to another MVC application Controller/Action to return content?

So the code for this might look like:
(http://www.mydomain.com/Home/Index)

<% Html.RenderAction("ads.mydomain.com", "Home", "Index", AdModel) %>

Maybe this is not a good idea as another thread has to spin up to server a partial view?

View 2 Replies

MVC :: RenderAction() Ignores Model Validation, RenderAction() Does Not?

Jun 4, 2010

I'm using MVC 2 and MVC Futures 2.0.50217.0.

I started with a view which repeatedly calls RenderAction(...) to include some external content implemented by another controller in my application. This is from the containing view:

[Code]....

The subModel objects are instances of the model for the MyController.MyAction view which has some Data Annotations validation attributes upon it. MyController.MyAction checks the model state is valid before it renders its view and chooses a view appropriately. This works fine.

However, if I use the MVC Futures' strongly typed helper to call RenderAction like so:

[Code]....

...then the validation is not performed. Or at least, the model state does not indicate that the model is invalid.

View 7 Replies

MVC :: Html.RenderAction In MasterPage Expects Home Controller?

Jun 28, 2010

In my Site.Master View, I have the following line:

[Code]....

If I don't include the string identifying the Controller to use, I get an error stating that the PrimaryNavigation method couldn't be found in the Home Controller. Since the Site.Master View is in the Shared Views folder, I would have thought that the Shared Controller would have been used.

View 1 Replies

MVC :: HttpException In Html.RenderAction After Installing Visual Studio 2010 Pro RTM?

Apr 13, 2010

I get an HttpException (details below) after installing Visual Studio 2010 Pro RTM in an application developed using Visual Studio 2010 RC. The platform used was ASP.NET MVC2 RTW (already under VS10 RC).

I first uninstalled all RC software and even ASP.NET MVC 2, and then did a "clean" install of VS10 RTM. The ASP.NET MVC 2 version now installed on my dev machine is 2.0.50217.0.

Exception Message: Error executing child request for handler 'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerAsyncWrapper'.

InnerException Message: <FilePath>ViewsLanguageRenderLanguageNavigation.ascx(6): error BC30451: 'Model' is not declared. It may be inaccessible due to its protection level.

The error occurs on this "Html.RenderAction":

[Code]....

The "LanguageController" just calls into another service function as below:

[Code]....

Does anybody have an idea what is causing the problem?

Edit:

By the way, I might also share the actual view (partial view) that would show the languages to select from:

[Code]....

View 1 Replies

RenderAction Not Finding Action Method In Current Controller In Current Area?

Mar 15, 2010

I'm creating an ASP.NET MVC 2 (RTM) project that uses areas. The Index action of the Home controller of one area needs to use RenderAction to generate a sub-section of the page. The action called is also defined in the same Home controller. So the call should just be:

<% Html.RenderAction("List") %>

However, I get an exception:A public action method 'List' was not found on controller 'RareBridge.Web.Areas.Events.Controllers.HomeController'.

Note that I'm not in the "Events" area! I'm in a completely different area. If I remove the "Events" home controller, then the exception still occurs but names a different controller (still not the one I want it to call).

I've also tried providing the controller name and area to the RenderAction method, but the same exception occurs. What is going on here?

BTW: I am using Autofac as my IoC container

View 2 Replies

Javascript Refuses To Call ActiveX Method - Agrees To Call Another

Mar 4, 2010

I have an ActiveX object which extends some functions. I have a web page that loads the ActiveX object and calls its methods in Javascript. The ActiveX object has two method; the problem is that Javascript can successfully call one of them but fails to call the other; citing Object doesn't support this property or method which is nonsense because I made a VB6.0 application that successfully calls this other method, so the two functions are indeed extended correctly and performing their job. And yes, the Internet Explorer security zones are all set and everything, as I wrote above the javascript code can call one method but refuses to call the other.

View 1 Replies

MVC :: How To Pass The Value In Main View To Partial View When Using Html.RenderAction

Jan 27, 2011

Let's say there is a textbox and a dropdownlist in mainview page, these two values are used by three partial views as well. when I use Html.RenderAction to post action to those three partial views, how to pass these two values to those partial views and in those views how to get these two values as a part of a object to send to database.

View 10 Replies

WCF / ASMX :: How To Force Each Web Method To Call Another Method By Default

Sep 14, 2010

I want to execute a certain piece of code by default before each web Method.

Without adding any extra code in each method how to achieve this?

I am calling this service from Win application.

View 1 Replies

C# - How To Call A Javascript Method From Code - Behind Web Method

Jan 25, 2011

I have a web method in my code behind:

[System.Web.Services.WebMethod]
public static string GetStateData(string state)
{
//this is where i want to call a javascript method "GetItems"
}

I have a javascript method that retrieves some values for me and I want to get use one of those values in my web method

function GetItems() {
var variable1= $("#<%=Item1.ClientID %> input:checked");
var variable2= $("#<%=Item2.ClientID %>").val();
return [variable1.text(), variable2.val(), variable2];}


I've searched for ways to call the javascript method from the web method but every time my search results in how to call a web method from javascript.

I did find this but it was done from the code-behind of a silverlight project and when I tried adding the correct reference to my code-behind it wasn't there

var result = HtmlPage.Window.Invoke("GetItems"); Is there a reference I'm missing?

View 2 Replies

AJAX :: Call Web Method Inside Other Method

Mar 26, 2016

 $("#Name").on("blur", function() {
if (Name != "" && Name != null) {
var options = {
type: "POST",
url: "ApplyNow.aspx/CheckName",

[code]...

how to use the value of 'duplicate' in btnsunmit_click()  from webmethod.

View 1 Replies

Cannot Call Post Service With Fiddler

Dec 4, 2015

Try to do the following .Have a service (MVC) that i run locally, so it goes like URL...The MVC looks like this:

Code:
[HttpPost]
public XElement MovieDetails([FromBody] MovieRequest MovieRequest)
{
return _movie.getMovieDetails(MovieRequest.movieid);
}

How do I call the movie id number from fiddler?I am trying it like this:

Or even like [{"MovieRequest":"1"}]
or <MovieRequest>000001</MovieRequest>
or <MovieRequest>000001<MovieRequest>
or <MovieId>000001</MovieId>

and i get this BS

View 6 Replies

Web Forms :: Using Get And Post Method In C#?

Sep 26, 2010

I need an example of GET and POST methods for C #?whether one can explain it in a textbox how it works.

View 9 Replies

MVC :: Use RedirecToActio Via POST Method?

Feb 18, 2011

is there any way to use RedirecToActio via POST method?

View 2 Replies







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