Welcome to MSDN Blogs Sign in | Join | Help

News

  • These postings are provided "AS IS" with no warranties, and confer no rights. Use of included code samples are subject to the terms specified Terms of Use

April 2009 - Posts

Tip #60: Did you know… How to Profile an ASP.Net site?
1. Create a asp.net web application in Visual Studio Team Edition For Developers 2. Write some code inside Page_Load function protected void Page_Load( object sender, EventArgs e) {     int sum = 0;     for ( int i = 0; i Read More...
Tip #59: Did you know…How you can automatically format unformatted HTML on paste in VS?
Do you copy/ paste a lot of unformatted HTML content in to your web forms? Do you always format HTML after pasting such content? There is an easy way to automatically format HTML on paste in VS. Here is how you do it. In Tools->Options dialog, go to Read More...
Tip #58: Did you know…How you can import/ export HTML Per Tag options in VS?
If you make a lot of customization to per tag options and you want import/ export these settings you could easily do so with Tools->Import/Export Settings dialog. To export your custom settings to a vssettings file, launch Import and Export Settings Read More...
Tip#57: Did you know… How to manage web site configuration through a web interface
The Web Site Administration Tool provides a web interface for you to manage different web site configuration settings. To launch the tool, for Web Application Project click Project-> ASP.Net Configuration & for Websites, click Website-> ASP.Net Read More...
Tip#56: Did you know… How to update JScript Intellisense manually
Do you like JScript Intellisense feature but have trouble seeing variables or methods you expect to see in JScript Intellisense?  Instead of trying to close files or other work around's you can simply try to “Update Intellisense” command Read More...
Tip #55: Did you know...How to change Start-Up Options and Instances of ASP.Net Development Server in a Multi-project Solution
If you have more than one project in your solution you can use following options of solution properties to set your start up actions... You can get the below dialog by right clicking your solution and going to its properties: If you have more than one Read More...
Tip #54: Did you know…How you can turn off intellisense for HTML/ CSS editors
If you would like turn off intellisense in HTML editors (aspx, html files) and CSS editor (css files), you could do so by going to Tools->Options dialog. For HTML editor, go to Tools->Options->HTML->General. In the right pane, under Statement Read More...
Tip # 53: Did you know... How to edit the templates for gridview in VS designer?
Gridview control has the flexibility to be configured how it's rendered using templates. Following steps show how the control's edit template can be changed in the Visual Studio Designer. I have a GridView hooked up to Sqldatasource using Northwind.products. Read More...
Tip # 52: Did you know... When deploying your ASP.NET web application, debug=false should be set in web.config
To help troubleshoot problems, developers usually enables the debug mode in web.config file. This causes ASP.NET to produce extra information in the compiled assemblies such as debug symbols, metadata. However, performance will be suffered as it takes Read More...
Page view tracker