Im getting this super annoying error in .net (c#), after a RedirectToAction i loose all of my Session stuff.
...
Session["someStuff"] = "Super Really Nice Stuff";
// this sid is passed, but session dont
return RedirectToAction("method", new { sid = sid });
}
public ActionResult method(string sid)
{
var someStuff = Session["someStuff"] // Session is null :s
....
Can someone help me please ? This is so annoying.