


 |
Guidelines for allowing Forms Based Authentication sites to be indexed.
To support indexing of content protected by Forms Based Authentication, you must program your website to automatically log in the visitor if they are originating from the same IP address as your webserver.
The following C# code illustrates the logic required:
if (Request.ServerVariables["REMOTE_ADDR"] ==
Request.ServerVariables["LOCAL_ADDR"]) {
// Bypass authentication, typically by manually
// creating the AuthTicket or using the
// FormsAuthentication.RedirectFromLogin method
// to simulate the login process.
}
.
Need further help/assistance?
Return to support page or Contact us.
|
|


 |
 |
Download our free developer version now, with all features enabled for localhost development, and free Lite edition license for your website.
>> Download now

|
|
|
|