How do I: 1. Move the register link "@Html.ActionLink("Register", "Register")" to the home page and 2. Show and Hide it based on if a user is logged in or logged out

I saw this tutorial awhile back but I can't find it again

-Jonny

link|improve this question

43% accept rate
Ok so I figured out the correct way to do it and here it is: – HelloJonnyOh Jul 31 '11 at 14:09
1. Open and edit the _LogOnPartial.cshtml 2. Place this code within the else condition and in front of this code "@:[ @Html.ActionLink("Log On", "LogOn, "Account")]" - <div>Please @Html.ActionLink("Register", "Register", "Account") or</div> It's done easily and correctly. – HelloJonnyOh Jul 31 '11 at 14:21
visual studio sample application has got this solution. – Aureliano Buendia Jul 31 '11 at 17:18
feedback

1 Answer

1: Move the register link "@Html.ActionLink("Register", "Register")" to the home page

Ans: no tutorials link given so i cant answer this

2: Show and Hide it based on if a user is logged in or logged out

inside razaor view do this

  @if (Request.IsAuthenticated)
  {
     //whatver
  }
link|improve this answer
Thanks Prasad but I figured out a more correct way. - 1. Open and edit the _LogOnPartial.cshtml 2. Place this code within the else condition and in front of this code "@:[ @Html.ActionLink("Log On", "LogOn, "Account")]" - <div>Please @Html.ActionLink("Register", "Register", "Account") or</div> It's done easily and correctly. – HelloJonnyOh Jul 31 '11 at 14:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.