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
how to write html code with ssl
What is the life cycle of web page?
Explain about Application and Session Events ?
Why Unload event of MasterPage Calls first in ASP.net ?
Just by seeing the signature of the bean how can you specify whether it is a stateful or stateless session bean?
What is the difference between debug and release?
In asp.net, how can you validate drop down box?
What is the difference between the response.write() and response.output.write() methods?
What is .net remoting?
How to deploy/publish webservices?How many ways?Plz explain me
How can we register exception filter globally?
What is asp.net file?
Explain what is the procedure to create the environment for asp.net? : asp.net mvc
if i wanna deploy my asp.net project to the production server and situation is that i m still not compiled my project i have as-is on my development side now on production server we dont have a visual studio now what kind of settings i need to be to do in webconfig /machine.config file to deploy my project and in iis too....
What is web api config?