Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
8answers
24k views

ASP.NET MVC - TempData - Good or bad practice

I'm using the AcceptVerbs method detailed in Scott Gu's Preview 5 blog post for dealing with form entries in ASP.NET MVC: User gets an empty form via GET User posts the filled in form via POST to ...
50
votes
4answers
5k views

How can I disable session state in ASP.NET MVC?

I would like to have a very lightweight ASP.NET MVC site which includes removing as many of the usual HttpModules as possible and disabling session state. However when I try to do this, I get the ...
11
votes
1answer
6k views

ASP.NET MVC exception handling

Is it OK to catch my exceptions in the controller's actions? Is there any better way of doing it? I'm actually catching my exceptions in the controller and using TempData to show a message to the ...
10
votes
4answers
1k views

Is there a possible “race condition” when using Asp.Net MVC TempData across a redirect?

When using TempData, my understanding is that it will keep whatever you put in it around for only one request. So when using TempData to retain data across a redirect (in order to use the ...
7
votes
6answers
142 views

Temporary directory persist across program runs

I need a temporary directory, but I want full control over its creation and deletion. I will use this directory to place git repositories which I want to monitor for new commits, so I need to store ...
6
votes
3answers
4k views

ASP.NET TempData persists between requests

I am using temp data as follow in my controllers - very simple, when there is a problem: TempData("StatusMessage") = "You have no items set to Auto-Ship." Then on every page I have a user control ...
5
votes
5answers
5k views

When to use TempData vs Session in ASP.Net MVC

I am trying to get the hang of MVC framework so bear with me. Right now, the only thing I'm using the session store for is storing the current logged in user. My website is simple. For this example, ...
5
votes
1answer
2k views

What is TempData collection used for in asp.net MVC? [closed]

What is the actual use of TempData collection in asp.net MVC, I need pros and cons of that collection, and when do I need to use it, which views it is shared upon, or any useful information about it, ...
4
votes
1answer
382 views

Is it possible to access the TempData key/value from HttpContext?

I'm trying to crate a custom action filter attribute. And some where, I need facilities, such us TempData[key] and TryUpdateModel... My custom attribute class deriving from the ActionFilterAttribute, ...
4
votes
1answer
475 views

ASP.NET MVC CookieTempDataProvider.DeserializeTempData returns null

I've been trying to use CookieTempDataProvider to pass a basic message between a post (entity update) and a get (entity list) using the RedirectToAction method. When using the default TempData ...
3
votes
2answers
125 views

equivalent of ASP.NET MVC TempData in ASP.NET

In ASP.NET MVC, there's a TempData which can pass data one time from one page to another. What's the equivalent for this in ASP.NET?
3
votes
2answers
2k views

Dynamic TempData in ASP.NET MVC 3

I'vm been trying to get a site running using ASP.NET MVC 3 and I came across the new dynamic ViewModel. It's great to pass values quickly to the view without using "magic strings". I'm wondering if ...
3
votes
1answer
571 views

Popup window in .NET MVC

I have a requirement of populating a new window (With no menus, no address bar) using the existing data that I have on the page. I am using a java script function for this purpose. function popup() { ...
3
votes
5answers
489 views

TempData[“message”] isn't reliable— what am I doing wrong?

I'm using TempDate["Message"] to show little update banners as the user does things on my site like this: [AcceptVerbs(HttpVerbs.Post), Authorize(Roles = "Admins")] public ActionResult Delete(int id) ...
3
votes
5answers
2k views

ASP.NET MVC does browser refresh make TempData useless?

If I redirect to a new page passing TempData to initialise the page it works fine, however if the user presses the refresh button in their browser the TempData is no-longer available. Given this, is ...
2
votes
1answer
1k views

ASP.NET MVC 3 Custom Action Filter - How to add incoming model to TempData?

I'm trying to build a custom action filter which grabs the incoming model out of the filter context, adds it to tempdata, then does "other stuff". My action method looks like this: [HttpPost] ...
2
votes
3answers
713 views

ASP.Net MVC TempData - how to keep state

We are using ASP.Net MVC TempData to store form data between page refreshes. We have a button on the page that allows the user to perform a certain action. If the user clicks this button one time, ...
2
votes
3answers
657 views

Tell Actions/Controllers to Persist TempData

I understand that TempData is designed to work only between a single page request. But I think have a situation I think breaks the intended functionality. I use Controllers in preference to Handlers ...
1
vote
1answer
66 views

How to avoid a query string parameter being remembered?

I'm developing a messaging system on a website. When user sends a message, she is redirected to inbox?status=sent which displays a neat status Message sent. However, if she then goes on to see any ...
1
vote
3answers
352 views

MVC 3 Action on different controller, but need ViewModel

I'm searching for the best possible way to solve the following problem: I have a search page, with different criterias that can be selected, which are availible in the SearchViewModel. Now the search ...
1
vote
1answer
333 views

In ASP.NET MVC why might TempData not persist when Session does?

I have an ASP.NET MVC project which uses TempData to carry an object from one controller action to another - which is in fact the same action but a version that accepts HTTP posts. On my development ...
1
vote
2answers
401 views

TempData are always empty

I want to use TempData to store messages between Post and followed redirect but TempData are always empty. I have BaseContoller offering some infrastructure for passing TempData. Simplified code ...
1
vote
1answer
329 views

Problem with TempData and Faked HttpContext using ASP.NET MVC

I am working with a faked HttpContext (code provided in the end) and probably I am missing something because I can't access TempData collection (forth line of SetFakeControllerContext method). Every ...
1
vote
1answer
527 views

ASP.NET MVC TempData in browser cookie

I am trying to use a custom ITempDataProvider provider to store TempData in a browser's cookie instead of session state. However, everything works fine except that I am unable to remove the cookie ...
1
vote
3answers
726 views

ASP.NET MVC Store TempData in Cookie

Is there a way to let TempData store in a browser's cookie instead of Session State. I have Session State disabled on my site. Thanks.
1
vote
1answer
139 views

Will configuring AppFabric to be my ASP.NET Session State Provider also make it the provider for MVC2 TempData?

I am setting up AppFabric to be the Session State Provider for a website we are building in Asp.Net MVC2. Since TempData is stored in the session will doing this also make AppFabric the storage ...
1
vote
2answers
125 views

How to pass ModelErrors along with redirect?

ASP.NET MVC 2.0 I'm doing Post-Redirect-Get, if I get errors on post, I need to include ModelErrors along for the ride to along -Redirect-Get route. I send it through 'TempData': ...
1
vote
1answer
298 views

ASP.NET MVC TempData used for wrong request

I use TempData to keep ModelState during redirects (using MvcContrib technique). This works fine. However, in rare cases, user aborts request and then immediate fires another (e.g. quickly clicks on ...
1
vote
2answers
281 views

asp.net mvc: TempData and AuthorizeAttribute

As a followup to this question, I'm wondering what's happening to my TempData. Scenario 1: user logs in user provides email address user receives email with validation code user clicks on ...
1
vote
1answer
250 views

TempData from Global ASAX

Can someone post a sample code on how I can access the TempData dictionary object from within the Global.asax.cs?
1
vote
1answer
566 views

Writing files in App_Data causes tempdata to be null

I have a small asp.net MVC 1 web app that can store files and create directories in the App_Data directory. When the write operation succeeds, I add a message to the tempdata and do a redirectToRoute. ...
1
vote
2answers
636 views

Maintaining ViewData between RenderAction calls

I'm rendering a common Log-In form using Html.RenderAction, on every page of my site. If the user enters their details into the text-box and clicks 'Submit', it does a POST to a controller that ...
1
vote
2answers
2k views

ASP.NET MVC: How to handle cross-action TempData and ViewData

I'm trying to find a good way to handle the following scenario (I'm still kinda new to this): A user can register through my site using an RPX/OpenId provider. Step 1: The user authenticates through ...
1
vote
5answers
4k views

ASP.NET MVC : Preserve TempData across multiple requests

There are values I need to pass when I perform redirects. I want to use TempData to accomplish this, but have encountered an issue. I use a special controller to generate dynamic JavaScripts. For ...
0
votes
0answers
22 views

Is there a better approach to testing using WebDriver + Azure DevFabric emulator?

I ran our WebDriver test suite in the DevFabric emulator last night, and when finished, noticed there were over a hundred failed tests. After a bit of investigation, I found out this was because I ...
0
votes
2answers
43 views

TempData moving from view to controler

I am attempting to call a controller via an actionLink() in a view. This controller get's data from a TempData repository. However, it seems that no matter what I do, if I set the TempData ...
0
votes
2answers
122 views

asp.net mvc - Detecting page refresh

I understand that are similar question on StackOverflow about this problem, but none of it solved my issue, so i'm creating a new one. As the title says, i'd like to detect when an user refreshs a ...
0
votes
1answer
64 views

TempData works, but is delayed by one request

I'm using TempData to carry messages with Redirect after Post. The controller sets the tempdata as shown here: TempData["message"]="foo"; return RedirectToAction("Index"); In the _Layout.cshtml, I ...
0
votes
1answer
25 views

TempData and ViewData die pretty quickly

Is there a way that I can store variables for long periods of time? My users will be leaving their windows open for extended periods of time (Up to a couple (3) of hours). If they do that, then ...
0
votes
2answers
128 views

why TempData[] doesnt work with IE

İn my MVC3 project, there is plenty of TempData[] that I am using for passing datas between actions. And it works totaly perfect when I use Chrome. But in IE I can't get values of TempData[] items. if ...
0
votes
1answer
60 views

Concerns with using TempData

I'm using TempData to persist ModelState errors for a form which is rendered from a ChildAction. The form allows a user to post a comment on a blog post. If the ModelState isn't valid, the errors ...
0
votes
2answers
112 views

TempData Not Being Cleared

I'm working on an ASP.NET MVC 3 web application, where i use TempData to store a model object, in the scenario where the user is not logged in. Here's the flow: Use submits form. Code (special ...
0
votes
3answers
61 views

c# TempData equivalent in php

I know I can explicitly set and unset a Session manually but I believe this is worth to ask. In c#, there is a dictionary called TempData which stores data until the first request. In other words, ...
0
votes
3answers
71 views

ASP.NET MVC: reassign TempData

In a controller action I receive a variable from a redirect in a TempData variable public ActionResult ChangePassword() { string t = (string)TempData["myVariable"]; // works ok when coming from ...
0
votes
1answer
131 views

Problem showing a messaje to the user using ASP MVC TempData

I'm using TempData to show a message to the user. I put a string in the TempData and later I read the string, and if it is not empty, then I show a DIV that contain the message. All works fine, and ...
0
votes
1answer
177 views

In MVC3, how do I override the TempDataProvider globally?

I'd like to change the TempDataProvider in an ASP.NET MVC3 application... I know I can do this on each controller by overriding CreateTempDataProvider... but I was wondering if there is a way to do ...
0
votes
1answer
452 views

Copy ModelState Errors to TempData & Display them In the view

Most of my action methods return PartialViews on success and RedirectToAction results on failure. For that, I would like to copy the model state errors into TempData so I could display them to the ...
0
votes
0answers
32 views

Saving images in the middle of a transaction

When I want to upload & save an image in the middle of a transaction . For example, creating a thread with multiple images . The scnario is you will upload images before saving other data like ...
0
votes
0answers
40 views

saving temp data

Sometimes we need to save some data temp within a transaction . and if it is not compeleted, it will be deleted . for example, uploading images . What is the best strategy for that ? saving data in ...
0
votes
1answer
250 views

MVC 3 CookieTempDataProvider and Ninject IOC

I am trying to use the CookieTempDataProvider in MVC 3 futures assembly. I believe I have "wired" it up successfully using ninject. Below is the code from my app_start.cs file: [assembly: ...

1 2