Hi,
After checking session value ,i want to redirect to another view using Razor syntax
following is my code
@if(Session["uname"].ToString() !="")
{
<h3>welcome ,@Session["uname"].ToString()</h3>
}
else
{
}
what should i write in the else part for moving to home/login
Regards
Baiju