Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

Link Building

Tuesday, May 18, 2010

AJAX : Beware of following Controls in ASP.Net

The following ASP.NET controls are not compatible with partial-page updates, and are therefore not supported inside an UpdatePanel control:
  • TreeView 
  • Menu controls.
  • FileUpload controls.
  • GridView and DetailsView controls when their EnableSorting And Paging property is set to true.
  • Login, PasswordRecovery, ChangePassword, and CreateUserWizard controls whose contents have not been converted to editable templates.
  • Validation controls
  • It includes the BaseCompareValidator, BaseValidator, CompareValidator, CustomValidator, RangeValidator, RegularExpressionValidator, RequiredFieldValidator, and ValidationSummary control. 
 Also i come to know that u cant do a partial update inside a repeter control.

Tuesday, March 30, 2010

ASP.Net Authentication And Authorization for javascript ,Image and CSS

Authentication means figuring out who you are and Authorization means figuring out what you can do. Both are fundamental parts of the ASP.NET Security Model.

One thing to notice in ASP.NET authentication mechanism is that ASP.NET authenticates requests for resources such as .aspx, .asmx, .ashx, .axd, .ascx and others that are mapped to the ASP.NET ISAPI DLL (aspnet_isapi.dll). ASP.NET does not authenticate requests for images (GIF, JPEG, etc), CSS or JavaScript files. If you want these resources also to be secured by ASP.NET (Forms Authentication, Windows Authentication or Passport), add them to the list of ASP.NET ISAPI mappings. This can be done from the Internet Information Services Manager (IIS Manager) by following these steps:
  1. Open IIS Manager (Start/Run, type inetmgr and Enter)
  2. From the left-side tree view, select the web application you want to change the mappings for
  3. Right-click on the web application and select Properties
  4. Swirch to Home Directory Tab and click Configuration
  5. On the Mappings tab, click Add and enter the extension (one of .js, .css, .jpeg) and ASP.NET ISAPI DLL path for Executable. You can copy/paste the complete path to the ISAPI DLL from any other mapping, .aspx, for example.
  6. Repeat the above step for other file extensios too, if required
  7. Click OK thrice  
Once done, requests to non-ASP.NET resources will also be subjected to ASP.NET authentication. The downside of this approach however is that it negatively impacts the performance of the web application because ASP.NET has to authenticate additional resource requests.