When do you use windows authentication in ASP.NET 2.0?

Monday, December 7, 2009


Your ASP.NET application should use windows authentication when your users have windows accounts that can be authenticated by a server. The accounts can be local windows accounts or domain accounts.


www.codecollege.NET

How will you enforce strong passwords using membership feature in ASP.NET 2.0?


You can enforce strong passwords using membership by configuring the attributes minRequiredPasswordLength, minRequiredNonAlphanumericCharacters, and passwordStrengthRegularExpression on your membership provider configuration.


www.codecollege.NET

Where will you place your user-interface strings ?

Saturday, December 5, 2009


It is a best practice to place all your user-interface strings in a resource file rather burning them in code.


www.codecollege.NET

How to read a Session variable in javascript?

Friday, December 4, 2009


var jsUsername;
jsUsername = <%=Session["CurrentUser"]%>


www.codecollege.NET

Which control of Ajax control toolkit populates matching list upon entering characters in a text box?

Wednesday, December 2, 2009


AutoCompleteExtender.


www.codecollege.NET

What is SAML?


Security Assertion Markup Language.


www.codecollege.NET

How will declare a one way communication method in a ASP.NET Webservice?


[SoapDocumentMethod(OneWay=true)]
[WebMethod()]
public void AOneWayComm()
{
//
}


www.codecollege.NET
Blog Widget by LinkWithin