The actionresult tag has no wiki summary.
1
vote
1answer
32 views
Insufficient stack to continue executing the program safely. ASP.NET MVC 4
My search functionality seems to continue in a infinite loop, everytime my debug hits the action below the POST actionresult gets fired.
In my Masterpage.cshtml I have following action:
...
1
vote
1answer
47 views
How can I create a search functionality with partial view in asp.net mvc 4
I am using ASP.NET MVC 4 with entity framework model first.
In my "Masterpage.cshtml" I want to have a partial view which contains a textbox and a button.
The search is looking for the items title, ...
0
votes
0answers
13 views
Android Text To Speech doesnt always work
I have this class and I want it to listen to what I say with the voice recognizer and then read me back what I said; however the tts.speak() does not work in the onResult class or in the onCreate ...
0
votes
1answer
32 views
How can i return two view from an action?
How can i return two view from an action?I tried as below but i got error.
public ActionResult Page()
{
//LINQ x expressions
//LINQ y expressions
if(Request.QueryString["type"] == "x")
...
0
votes
0answers
17 views
DownloadResult VitrualPath searching the wrong path
Trying to Download a generated file from a folder using the code below
public class DownloadResult : ActionResult
{
public DownloadResult()
{
}
public ...
0
votes
1answer
111 views
MVC4 Ajax.ActionLink Breaks
Answered!!
Okay, I am EXTREMELY new to MVC4 and am still in the learning stages of Ajax so I could really use some help with this one.... the more I work on it, the messier it gets. :( Here we go!
I ...
1
vote
1answer
27 views
Get ActionResult from ActionExecutingContext
I'm looking to get the action that caused OnActionExecuting() in an overridden ActionFilterAttribute. The idea is to save this in the session so the user can be redirected to their intended page after ...
0
votes
3answers
51 views
Why my link when clicked calls wrong action result
I have this problem. I have edit page and one of its properties are hyper links. One div is displaying video list I want that if I click any link (e.g. "Delete") it will trigger ajax call to delete ...
1
vote
1answer
62 views
Call an MVC ActionResult with Quartz
I'm trying to set up quartz to stream values to the client using SSEs (server sent events). What I'd like to do is call an ActionResult in the controller every 5 seconds, which will send the updated ...
0
votes
1answer
43 views
button event not working
I want this:
@using (Html.BeginForm("bgcTest", "CompaniesController"))
{
<p>
Ange BolagsID: <br />
<input type="text" name="BolagsID" />
<input ...
0
votes
2answers
59 views
How can I dynamically alter the files in the /Content directory in ASP.NET MVC?
When I serve a javascript file to a user from the /Content Directory I want to replace a string token in that file with a value, so that when the user requests a given file, it has all the ...
0
votes
1answer
129 views
ASP.NET MVC ActionResult method confusion
i have a rather simple question. This is the first time i'm doing this, so please bare with me.
In my ASP.NET MVC application I want to just update two variables in my Register method.
My register ...
0
votes
2answers
51 views
When does ActionResult get evaluated?
I am a bit confused as to when ActionResult actually gets evaluated.
When using the Authorize attribute, I can see that if the user is not authorized, the result context gets set to an unauthorized ...
0
votes
1answer
96 views
jquery get() method access actionresult with parameter
I have an ActionResult method :
public ActionResult GetData(int id)
{
return Json(CreateCompaniesList(), JsonRequestBehavior.AllowGet);
}
and want to access it with the jQuery get method.
If ...
1
vote
0answers
34 views
How do I produce ActionResult from a DataContract-attributed class instance?
In my MVC3 application I need to return an XML representation of a class that has DataContract attribute on it. MVC3 actions return ActionResults.
[HttpGet]
ActionResult MyActionResult( paramsHere )
...
1
vote
0answers
55 views
UrlActionResult in asp.net MVC
I want to know is there any open source action result code available for asp.net mvc in which i can pass a URL and it will response out the content.
Just like there are some inbuilt Action results
...
0
votes
0answers
100 views
Action method is not fired after deploying in IIS using Ajax.ActionLink()
I have a default routing as below:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
...
1
vote
1answer
46 views
MVC sending a form to a page for testing
I am using MVC and have a view (test.cshtml) that contains a form. Is there a way to send it to another View page.cshtml for testing instead of same [http] controller ActionResult test()?
I am ...
4
votes
2answers
406 views
return new RedirectResult() vs return Redirect()
What is the difference between the following two controller ActionResult return statements:
return new RedirectResult("http://www.google.com", false);
and
return Redirect("http://www.google.com");
...
-2
votes
2answers
287 views
struts 2 multipart maxSize action return
I have set in struts2 the property "struts.multipart.maxSize=524288000" so I can limit the overall upload size to that size. When I upload 2 files that exceed that limit, an exception occurs from the ...
1
vote
2answers
710 views
Nested Model binding
---EDIT---
I have this model
public class MainModel {
string Name;
List<Address> Addresses;
}
public class Address {
string prop2;
}
Is quite easy to create the view but I didn't find ...
0
votes
1answer
144 views
MVC3 delete action-name all
I have 3 action name delete on 3 different controllers which are on "registration,profile and questions" they all have action delete methods. How can I from my registration-delete method call out ...
4
votes
1answer
244 views
How to handle FileStream return type in .ajax post?
I am sending JSON object through following code.. Controller returning values in CSV format that should be provide promt to open or save as CSV file. I unable to understand that what exactly code ...
0
votes
0answers
183 views
MVC3 - What method to call using an Ajax request that wont change page url
I have an ajax request which returns HTML on success. At first I was calling an ActionResult method in my ajax request but doing this changes the URl when the html is returned to the ActionResult ...
1
vote
2answers
159 views
Run a URL string through the ASP.NET MVC pipeline to get an ActionResult
I have a list of URLs that I obtained by querying Google Analytics data. I want to run each of these URLs through the MVC pipeline to get the ActionResult. The action result contains the view model ...
0
votes
3answers
172 views
How does ASP.Net MVC determine the view to use from a controller?
I have a controller that returns an ActionResult. Specifically, it calls return View(someViewModel) at the end of the method. Here's the method signature:
protected ActionResult ...
3
votes
0answers
29 views
Sending myself an email with search word from site search (tipuesearch) using MVC4
I am using "tipuesearch" for search option in my site. I am trying to better index my site by learning what visitors are typing in the search textbox. To do that, I am thinking of sending myself an ...
0
votes
1answer
413 views
ASP.net MVC 3 wont download the file generated
Here's the code snippet from my Controller... it all starts at my Index.
public ActionResult Index(...){
//some code here
return GenerateReport(...);
}
So ...
0
votes
1answer
60 views
Can MVC's ValidateRequest be triggered in code? [duplicate]
Possible Duplicate:
Handle validation failures myself in ASP.NET MVC
I have an action method that takes HTML input (potentially).
[ValidateInput(false)]
[HttpPost]
public ActionResult ...
1
vote
0answers
152 views
MVC ActionResult for large video files
I am using ASP.NET MVC 4 for a web site. The site manages online events for our group and gives registered users access to online materials, archives of web events and instructional videos. I have ...
0
votes
1answer
190 views
Can I call an ActionResult from within an ActionResult and work with the returned HTML [duplicate]
Possible Duplicate:
In MVC3 Razor, how do I get the html of a rendered view inside an action?
Ok, here is the scenario. I have an Action Result that returns a nicely formatted Partial View. ...
1
vote
3answers
967 views
MVC - use C# to fill ViewBag with Json Action Result
I have an MVC website with C# code behind. I am using an ActionResult, that returns Json.
I am trying to put something in the ViewBag but it doesn't appear to work.
The code looks like this -
...
-1
votes
1answer
124 views
Datepicker Ajax break
I have a jQuery datepicker that works except when the Ajax in updateTable is done.
The numbers in the calendar cells disappear and selection of cells is prevented. This occurs regardless of what is ...
0
votes
1answer
204 views
RedirectToAction / save form and print PDF from on button
my application is MVC3 (ASPX views). I have a form, in the Edit view I have save button, that saves the form and return to the index page, and another button to print PDF from another ActionResult in ...
2
votes
2answers
1k views
Adding Parameters to URL.Action in Razor
Hi all Currently I have a website that has a button and some javascript that creates a loading look and then runs this actionresult. I want to add parameters to actionresult but not sure how to do ...
0
votes
1answer
272 views
How to execute an ajax call just after a request to download a file in ASP.NET MVC3
what I want to do is to update the number of "new files" after I read one. First of all, I have a text with the quantity of files that are new (by new files I mean the ones that I havent downloaded or ...
1
vote
3answers
303 views
Authorize attribute is letting ActionResult code execute
I have a custom attribute that I am using for Ajax requests to prevent the default FormsAuthentication workflow from happening (since it doesn't make sense for an Ajax request).
This is the custom ...
0
votes
2answers
490 views
How to pass List in Redirecttoaction
I want to pass more then one parameter from RedirectToAction method
how can I pass?
My One Action Method
[HttpPost, ActionName("SelectQuestion")]
public ActionResult SelectQuestion(string ...
1
vote
2answers
172 views
return view doesn't run controller code mvc
I have a problem with "return view()" that doesn't excute code in my controller.
I have a controller with this code:
public class BrokerController : BaseController
{
public ActionResult ...
0
votes
2answers
120 views
Need to keep a URL hidden from the user, can I return the results of the HTTP request as an ActionResult?
In order to access a vendor resource (externally hosted) I have a URL that makes a request which contains authentication credentials. The URL is built dynamically, but I don't want it present in the ...
0
votes
0answers
69 views
Truncate auto incremented column within a delete actionresult
Hi I am wondering if there is a way of using the truncate function within a delete actionresult.
For example, a product with the id number of 7 it deleted from the table I want the next record below ...
2
votes
2answers
4k views
MVC 3 The parameters dictionary contains a null entry for parameter 'id' of non-nullable type
I am completely new to MVC so please bare with me while i try to explain the problem. I'm trying to retrieve data from my db via the id parameter in my default route:
routes.MapRoute(
...
1
vote
0answers
506 views
MVC Redirect ActionResult
On a MVC controller I have the following:
public virtual ActionResult Test() {
ActionResult result = MVC.Home.Index();
return RedirectToAction(result);
return View();
}
This redirects to ...
0
votes
2answers
274 views
Getting request type from ActionResult
I am extending the ActionResult class. In the ExecuteResult method I want to check if the action was a GET or a POST however there doesn't seem property in the ControllerContext class that will let me ...
2
votes
1answer
466 views
Custom ActionResult and viewbag
I've writen a very simple Actionresult which derives from ViewResult
public class FormResult : ViewResult
{
public override void ExecuteResult(ControllerContext context)
{
...
1
vote
2answers
1k views
MVC ActionResult to force JQuery Mobile to refresh the page?
I have a MVC3 project using jQuery Mobile and I have a slight issue where when I return an action result to a view, jQuery Mobile is not reloading the page and therefore the <script> tags within ...
1
vote
1answer
127 views
Save the Generated Action Result of a Controller/Action
We have a Document Management System that we use internally and I'm trying to find out if there is a way to save the resulting HTML that is generated when a Controller/Action is called.
I'm needing ...
1
vote
1answer
186 views
Vanity Url, reading an entered string instead of int
I'm trying to allow for Vanity Urls, but I am running into the problem that if I enter
XXXX/User/Profile/Test
instead of
xxxx/User/Profile/224
That it cannot read the string.
My current ...
2
votes
4answers
898 views
How to serve html file from another directory as ActionResult
I have a specialised case where I wish to serve a straight html file from a Controller Action.
I want to serve it from a different folder other than the Views folder. The file is located in
...
0
votes
1answer
55 views
custom modelmetadataprovider for JsonResult
I wrote a custom metadata provider by inheriting it from DataAnnotationsModelMetadataProvider. The custom provider contains override implementations for GetMetadataforProperty and CreateMetadata.
...