Sign in
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Blog - Link List
ASP.NET Resources
Web Developer Tools Team
www.ASP.Net
ASP.NET Forums
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Anh Phan
ASP.NET
CSS
CSS and HTML
Data
Deepak Verma
Designer
Development
Editor
Formatting
HTML
IIS
Options
Ranjini Mathrubootham
Reshmi Mangalore
tips and tricks
URL Rewrite
Visual Studio
Visual Studio 2008
Visual Studio 2008 SP1
Visual Studio 2010
VS2008
VSTS
VWD
WAP
Archive
Archives
September 2011
(1)
August 2011
(1)
March 2011
(1)
August 2010
(1)
May 2010
(1)
April 2010
(4)
March 2010
(1)
January 2010
(1)
December 2009
(1)
November 2009
(1)
October 2009
(1)
September 2009
(4)
August 2009
(3)
July 2009
(4)
June 2009
(16)
May 2009
(10)
April 2009
(9)
March 2009
(7)
January 2009
(4)
December 2008
(10)
November 2008
(11)
October 2008
(9)
September 2008
(4)
August 2008
(4)
July 2008
(2)
MSDN Blogs
>
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #88: Did you know… To not stress your server, limit the number of concurrent requests
Posted
over 4 years ago
by
Web Development Tools Microsoft
0
Comments
The other day somebody ask me if there was a way to limit the amount of work that Site Analysis in IIS SEO Toolkit would cause to the server. This is interesting for a couple of reasons, You might want to reduce the load that Site Analysis cause to your...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip#97: Did you know… How to Display Hidden Information in Design View
Posted
over 4 years ago
by
Web Development Tools Microsoft
4
Comments
The design view in Visual Studio can display glyphs and borders for the hidden non - graphic elements (such as div, span, form, and script elements). This feature helps you to see where the elements are and avoid inadvertently deleting the non-graphic...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip # 30: Did you know... Ajax Extender controls UI behaves differently in VS 2008 than in VS 2005
Posted
over 5 years ago
by
Web Development Tools Microsoft
4
Comments
In VS 2005, you can drag and drop an extender control anywhere on the design surface. However, in VS 2008, you can drop an extender only on an ASP control which the extender can extend its functionality. When you drag an extender and hover it over a control...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #92: Did you know … How to select a master page using 'Select a Master Page' dialog?
Posted
over 4 years ago
by
Web Development Tools Microsoft
1
Comments
Master page for a Web form can always be set manually in the source code, but here is an option to select the master page while create the webform using the 'Select a Master Page' dialog. The path to select a Master page using the 'Select a master page...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #8 Did you know … How to create an ASP.NET Web User Control and include it in your web page?
Posted
over 5 years ago
by
Web Development Tools Microsoft
7
Comments
Creating an ASP.NET Web User Control is as simple as creating an ASP.NET Page using Visual Web Developer. Here are the steps: 1. Open up an existing Website to which you want to add the user control. 2. Right Click on the Website context menu...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #26: Did you know... How to have C# and VB.NET files inside your App_Code directory?
Posted
over 5 years ago
by
Web Development Tools Microsoft
5
Comments
If you are taking advantage of the App_Code folder to develop an ASP.NET WebSite some times you need to use code files that are written in different .NET languages. For example, you may want to use C# files and VB.NET files in the same web site: To be...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip#63: Did you know…How to specify a fixed port for Visual Studio Development Server while using WAPs?
Posted
over 4 years ago
by
Web Development Tools Microsoft
2
Comments
In Tip#21 we showed you how to set a fixed port for the Developer Web Server in Web Sites. Here is how you will be able to configure this for Web Application Projects. 1. Go to the properties page of WAP. Right Click on your Web Application and click...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #12: Did you know..How to create an IIS Virtual Directory from within Visual Web Developer?
Posted
over 5 years ago
by
Web Development Tools Microsoft
3
Comments
Here are the steps on how to create a Local IIS Virtual Directory.To start with you should have IIS installed on your box. Step1: Go to File Menu->Click on New Web Site. Step2: Click on the Browse button in the New Web Site dialog. This will bring...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #35: Did you know…How to add Intellisense from script libraries for JS files?
Posted
over 5 years ago
by
Web Development Tools Microsoft
2
Comments
Here is an example to add intellisense for JS files in VS 2008. So, you have two Javascript files Jscript1.js with the following code function validateForm() { } and Jscript2.js (wherein you want current JScript file to show intellisense including objects...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #54: Did you know…How you can turn off intellisense for HTML/ CSS editors
Posted
over 4 years ago
by
Web Development Tools Microsoft
3
Comments
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...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip# 78: Did you know… How to navigate using Document Outline?
Posted
over 4 years ago
by
Web Development Tools Microsoft
3
Comments
Document Outline window can be launched from the menu View -> Document Outline , or via short cut key Ctrl-Alt-T . The Document Outline window displays a nested, hierarchical tree of the elements and scripts on the page. It gives you a good overview...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #69: Did you know…The keyboard shortcut for View in Browser?
Posted
over 4 years ago
by
Web Development Tools Microsoft
6
Comments
Ctrl +Shift+W does the trick for you. This short cut is mentioned under File Menu -> View in Browser . So if you are still using Select File -> Right click for context menu and then selecting View in Browser as shown below, you may want to start...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #76: Did you know… How to hide a non-visual control in your designer?
Posted
over 4 years ago
by
Web Development Tools Microsoft
4
Comments
Some times as you are building your web page, you may want to hide all the non-visual controls like Timer control so that the page looks close to how it would be rendered on your browser. Our Designer can toggle between displaying and not displaying Non...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #9 Did you know … You can also register your ASP.NET Web User Controls in Web.config?
Posted
over 5 years ago
by
Web Development Tools Microsoft
6
Comments
In Tip#8 we saw how to create a Web User control, register a Web User Control and use the Web User control in your page. Note that VS added a @Register directive right at the top of the page on drag drop of the user control on to your page. But in future...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #91: Did you know … How to automate FTP 7.5 installation and site creation?
Posted
over 4 years ago
by
Web Development Tools Microsoft
0
Comments
With the imminent release of Windows 7 and Server 2008 R2 to the general public, some of you may want to automate the installation FTP 7.5 on the machine. Thanks to pkgmgr , this is made amazingly simple! To install both the UI and the FTP service, simply...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip#99: Did you know… You can now install new Media and Developer Tools products with Web PI v2 RTW?
Posted
over 4 years ago
by
Web Development Tools Microsoft
2
Comments
RTW version 2 of Web PI, which shipped in September, now offers additional products through Media and Developer Tools scenarios through the new Options Dialog. You can include products from these scenarios from the Options dialog: and check the corresponding...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #79: Did you know… How to quickly comment and uncomment in your web pages?
Posted
over 4 years ago
by
Web Development Tools Microsoft
3
Comments
Select the lines you want to be commented in your ASPX, HTML, web config file etc and click on the Comment/ Uncomment icon in Toolbar. The comment icon looks like this: The icon for uncomment looks like: Alternatively you can use Keyboard...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #44: Did you know…How to view the Project File while still in Visual Studio?
Posted
over 4 years ago
by
Web Development Tools Microsoft
2
Comments
If you are developing a web site using the Web Application Project model, then you know that the Project File is an integral part of this model. In order for a file to be considered part of the Web Application Project, it must be included within...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip#25: Did you know... You can have canonical URLs and Redirects with IIS 7.0
Posted
over 5 years ago
by
Web Development Tools Microsoft
5
Comments
Canonical URLs help you to make your links Search Engine Optimized (SEO). For human it is easy to understand that http://www.contoso.com is same as http://contoso.com . But many search engines will not make this assumption and treat them as two separate...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip#102: Did you know… How to specify tag specific formatting
Posted
over 3 years ago
by
Web Development Tools Microsoft
2
Comments
Let’s see this with an example. I have the following html code on my page. Now if I format the document by selecting Edit –> Format document (or Ctrl K, Ctrl D) The document becomes I want the content inside td should remain on the same line...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #46: Did you know… that Web Deployment “migrate” operation is “sync” operation with all migration rules enabled?
Posted
over 4 years ago
by
Web Development Tools Microsoft
4
Comments
Note: C# code in this article applies to RC version of Web Deployment Tool available here: - Web Deployment Tool 1.0 RC x86 - Web Deployment Tool 1.0 RC x64 or through WebPI tool: - Web Platform Installer To migrate an application or whole server from...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip#64:Did you know … How to convert a GridView column from asp:BoundField to asp:TemplateField in Design View?
Posted
over 4 years ago
by
Web Development Tools Microsoft
3
Comments
Assume that you already have a data source SqlDataSource1 that binds to a simple query returning some details from the Customers table. <asp:SqlDataSource ID= "SqlDataSource1" runat= "server" ConnectionString= "<...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #10 Did you know… Visual Web Developer 2008 has a New Style Builder Dialog?
Posted
over 5 years ago
by
Web Development Tools Microsoft
3
Comments
Visual Studio 2008 has a New Style builder dialog. This dialog box helps you design new styles and also preview it at the same time. Using this dialog, you can create a style which can live in current page, an existing external style sheet or a new external...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #24: Did you know…You could display CSS/HTML errors as warnings or as errors?
Posted
over 5 years ago
by
Web Development Tools Microsoft
1
Comments
VS 2008 has this cool feature of downgrading any CSS/HTML errors to warnings. This is helpful when you want to separate out validation errors and are looking for what is actually stopping your build. In VS 2008 the default behavior is to display any HTML...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip#85: Did you know… You can now do Multiple Selection of controls in your Designer with VS 2008 SP1?
Posted
over 4 years ago
by
Web Development Tools Microsoft
0
Comments
Visual Web developer 2008 SP1 supports multiple selection of controls on your designer using Ctrl+Click . You can see that the designer: Displays the primary selected control with a white tab. Button3 in the image below. Enable you to set property for...
Page 3 of 5 (111 items)
1
2
3
4
5