Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

If I'm developing an application that must accommodate
multiple security levels though secure login and my ASP.NET
web application is spanned across three web-servers (using
round-robin load balancing) what would be the best approach
to maintain login-in state for the users?

Answer Posted / a

/* Alternate row color */

for (int j = 0; j < dstNew.Tables[0].Rows.Count; j++) {
if (j % 2 == 0) {
sb.Append("<tr class=\"row\">");
}else{
sb.Append("<tr
class=\"altRow\">");
}
sb.Append("<td>" + dstNew.Tables
[0].Rows[j]["DivisionID"] + "</td>");
sb.Append("<td>" + dstNew.Tables
[0].Rows[j]["DivisionName"] + "</td>");
sb.Append("</tr>");
}


/* Style */

.row{
background-color:Gray;
}
.alrRow{
background-color:Olive;
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between session and application in asp net?

1018


Why session is used in asp.net?

1021


How to disable validator control by client side JavaScript?

1054


Explain why it is useful to use mvc instead of webforms? : asp.net mvc

1040


What are the options in ASP.NET to maintain state?

1116


How should I destroy my objects in asp.net?

1070


How can i explain my project during interview?many time i expalain my project but they did't accept? please explain me.

5571


Describe the .net base class library.

1061


Explain what are webservices?

978


Explain the path instructions in xaml?

993


By default, Web API sends HTTP response with which of the following status code for all uncaught exception?

1608


Where is the view state data stored?

992


Asp pages that worked pefectly on windows 2000 server and iis 5.0 do not work on windows 2003 server with iis 6.0. Asp.net pages work fine. Why?

982


Is asp.net core faster?

1014


What symbol specifies the beginning of a query string?

923