I have enabled FBA for my Sharepoint site and i want to add a login page or webpart either one of them.

Currently my site directly goes to Default.aspx and displays information and webparts (which display error messages)

What i want is: Either set my default page to the Login Page or if there is a way not to display anything on my default page other than a login web part?

I want users to login their details before they enter the default page?

Any solutions e.g. redirects, webparts or anyother will be appreciated!

Thanks in advance!

link|improve this question

feedback

3 Answers

As you enabled Forms Based Authentication (FBA), can't you just change your login page?

<authentication mode="Forms">
  <forms loginUrl="/_layouts/mycustomlogin.aspx" />
</authentication>
link|improve this answer
Thanks for the response Rubens! Basically at the moment i have <authentication mode="Windows"/> <identity impersonate="true" /> <authorization> <allow users="*" /> </authorization> and what basically happens is when a user opens mysite/Testpage.aspx - the webparts are displayed with a message 'you are not authorised to view the webpage' what is want is that they should not be able to see the page completely...i hope this make sense - please let me know if it doesn't once again thanks for your help. – Rob Oct 26 '09 at 14:45
hmm, but you said you enabled FBA; how do your users login? – Rubens Farias Oct 26 '09 at 15:50
2  
basically i have 2 zones 1 is default and the second is Extranet and in Central Admin i have defined the default as Windows and Extranet as Forms. I have anonymous enabled on both of them. Am i doing anything wrong? Thank You! – Rob Oct 26 '09 at 16:33
feedback

A setup to match your description might look something like this:

Default Zone, Windows Auth, No Anonymous Access (usually)

Extranet, FBA, maybe anonymous access depending on what you're trying to do

A page that you don't want "the public" to be able to see at all should probably require authentication (no anonymous access). Does this help?

link|improve this answer
1  
makes perfect sense but when i try change the settings in my Central Admin it gives me errors - could you please look at stackoverflow.com/questions/1625906/… and let me know if you can help please? – Rob Oct 27 '09 at 9:59
feedback

It definitely has something to do with your Anonymous Access - try to configure that appropriately.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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