What is the difference between CurrentCulture property and the CurrentUICulture property
CurrentCulture property : affects how the .NET Framework handles dates, currencies, sorting and formatting issues CurrentUICulture property : determines which satellite assembly is used when loading resources
What are the differences between HTML versus Server Control?
Refer ASP.NET Server Controls Recommendations Introduction to ASP.NET Server Controls
Why do I get a blank page when I use Server.Transfer(‘page1.htm’) to transfer to a different page
Server.Transfer only works with .aspx pages You can’t use Transfer method with HTML pages
What permissions do ASP.NET applications posses by default
By default ASP.NET Web applications run as ASP.NET user. This user has limited permissions equivalent to the User Group.
Why do I get the Error message ‘Operation must use an updateable query’?
If you’re getting an error when Inserting or Updating an MS Access Database (’Operation must use an updateable query’), that’s because the ASPNet user account needs the correct permissions on the directory where the database resides To fix this in Windows 2K: (Go into Accessories/Computer Management/Local Users & Groups/users You will see that there’s an ASPNet user. ) Right click on the directory where your database is – choose properties – Then the security tab – then click on permissions. Add the ASPNet user to the shared section Then, make sure it has ’Change’ rights – Click Apply and you should be working fine then.