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
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
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)
June, 2009
MSDN Blogs
>
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
>
June, 2009
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 #86: Did you know… Visual Studio has several different search options?
Posted
over 3 years ago
by
Web Development Tools Microsoft
2
Comments
The standard methods for searching can be found under the Edit --> Find and Replace menu. The “Quick Find” method (Ctrl+F) allows users to search inside of the current document, all open documents, the current project, the entire solution, and the...
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 3 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...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #84: Did you know… How to set a Start page for your Web Site in Visual Web Developer?
Posted
over 3 years ago
by
Web Development Tools Microsoft
2
Comments
As you are developing your site, you may want to start at a particular page for testing your web site. By defaults, when you start debugging, Visual Studio runs the page that was currently in focus in your designer. If you set this page, Visual web Developer...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #83: Did you know... You can get the name of the calling method from the stack using reflection?
Posted
over 3 years ago
by
Web Development Tools Microsoft
6
Comments
Nearly every program needs a logger to log events, errors and exceptions. Sometimes it is also useful to log the name of the method that logged the event. The easiest way to do that is to make the log method take both the calling method name and event...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #82: Did you know... How to migrate Visual Studio 2005 Web Application Project to Visual Studio 2008
Posted
over 3 years ago
by
Web Development Tools Microsoft
4
Comments
Following steps highlight how a Visual Studio 2005 Web application project can be migrated to Visual Studio 2008. Take backup of the original project Open Visual Studio 2008 Click File -> Open Project and browse to the folder to open the project You...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #81: Did you know... How to Select the CSS Schema for Intellisense and CSS Properties?
Posted
over 3 years ago
by
Web Development Tools Microsoft
2
Comments
In Visual Studio 2008, there is a Style Sheet Toolbar (visible only when a CSS file is active) which allows the user to select a CSS Schema, as seen in this screen shot: However, this setting only affects the CSS editor, not the Intellisense in...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #80: Did you know… How to show JScript validation errors as warnings?
Posted
over 3 years ago
by
Web Development Tools Microsoft
3
Comments
With Visual Studio 2008 RTM, JScript validation setting is an option on the HTML validation page on the Options dialog. Since Visual Studio 2008 SP1 and later, we added a new option page JScript on the Options dialog, see the blog "Introducing JScript...
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 3 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# 78: Did you know… How to navigate using Document Outline?
Posted
over 3 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# 77: Did you know… How to enable Page Level Tracing for your ASP.NET pages?
Posted
over 3 years ago
by
Web Development Tools Microsoft
7
Comments
Enabling tracing at page level gives you a bunch of information that can be useful while debugging your application.Tracing helps understand which control uses more view state, start/end of PreInit, start/end of Init, start/end of Render, etc. This...
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 3 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 #75: Did you know…How to maintain scrollposition after post back?
Posted
over 3 years ago
by
Web Development Tools Microsoft
10
Comments
When web pages are posted back to the server, by default user is returned to the top of the page. On a large web page, you might have a requirement to scroll down the user automatically to the last position on the page. MaintainScrollPositionOnPostBack...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #74: Did you know…How to Add and Remove AJAX Extenders in Visual Studio 2008 Designer?
Posted
over 3 years ago
by
Web Development Tools Microsoft
6
Comments
Tip#62 showed you how to add an AJAX Control Toolkit to your Toolbox. Once you have the toolkit here is how you proceed: 1. Switch to Design View of the page and drag drop ScriptManager control from the AJAX Extensions tab of toolbox to the designer....
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #73: Did you know... about IIS Search Engine Optimization (SEO) Toolkit Beta
Posted
over 3 years ago
by
Web Development Tools Microsoft
6
Comments
IIS Search Engine Optimization (SEO) Toolkit Beta – is a free toolkit that helps Web developers, hosting providers, and server administrators improve their sites’ relevance in search results by recommending how to make them more search engine-friendly...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #72: Did you know... you can now manage Windows Server 2008 and Windows Server 2008 R2 from Windows 7
Posted
over 3 years ago
by
Web Development Tools Microsoft
3
Comments
Technorati Tags: VWD , Visual Studio 2008 , tips and tricks , ASP.NET , IIS , IIS Remote Manager , WebPI Last week, IIS Remote Manager was re-released to support Windows 7. Prior to this release, remote management was supported only on XP, Vista, Windows...
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Tip #71: Did you know... there are several new configuration settings available in FastCGI Extension 1.5 Beta
Posted
over 3 years ago
by
Web Development Tools Microsoft
3
Comments
Following are the new configuration settings available in FastCGI 1.5 Extension Beta: MonitorChangesTo - This property specifies path to a file, changes to which will trigger a recycle of FastCGI executables running for this FastCGI process pool. If value...
Page 1 of 1 (16 items)