7 lines
208 B
C#
7 lines
208 B
C#
|
[ControllerSessionState(SessionStateBehavior.ReadOnly)]
|
||
|
public class CoolController : Controller {
|
||
|
public ActionResult Index() {
|
||
|
Session["Key"] = "value"; // Value is not available in
|
||
|
the next request
|
||
|
}
|
||
|
}
|