how can i check if a user is logged in in user control with asp.net mvc
usually on a view page i use this
<% if (User.Identity.IsAuthenticated)
Well I use VB
If User.Identity.Name = "" Then Response.Redirect("~/Login.aspx") Else ........continue........... End If