Sign in
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
.NET
Ajax
Anh Phan
ARR
ASP.NET
ASP.NET MVC
Automatic
Bala Chirtsabesan
Build
Canonical URL
Configuration Editor
CSS
CSS and HTML
Data
Database
Debug
Deepak Verma
Designer
Development
Dynamic Data
Editor
Export
Failed Request Tracing
FastCGI
Formatting
FRT
ftp
Hotlinking
HTML
IIS
Import
Intellisense
IntelliTrace
JavaScript
Jimmy Lewis
Joe Cartano
JScript
Mark Berryman
Master Pages
MVC
MVC 2
One-Click Publish
Options
Package
Paste
Per Tag Options
Perfomrance
Performance
PHP
Publish
Ranjini Mathrubootham
remote connection
Reshmi Mangalore
SEO
Settings
Shortcuts
tips and tricks
Tools
URL Redirect
URL Rewrite
Validation
Visual Studio
Visual Studio 2008
Visual Studio 2008 SP1
Visual Studio 2010
VS 2010
VS2008
VSTS
VWD
WAP
Web Deployment
Web PI
Windows 7
Xinyang Qiu
Browse by Tags
MSDN Blogs
>
Tips & Tricks for ASP.NET, IIS, and Visual Web Developer
>
All Tags
>
visual studio 2008
Tagged Content List
Blog Post:
Tip#102: Did you know… How to specify tag specific formatting
Web Development Tools Microsoft
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 after formatting the document. Following steps would...
on
25 Mar 2010
Blog Post:
Tip#101: Did you know… How to scope Theme
Web Development Tools Microsoft
Themes are a way to define properties of pages and controls, and can be used to provide consistent look across pages. There are several different levels of applying a theme to an individual control, a page, or an application. Control Level Define a named skin (an entry in a .skin file having the...
on
25 Jan 2010
Blog Post:
Tip#100: Did you know… How to view ASP.NET trace information?
Web Development Tools Microsoft
You can enable ASP.NET tracing either at an Application level or at a page level; see Tip# 77: Did you know… How to enable Page Level Tracing for your ASP.NET pages? for more information. With the tracing enabled, you can view the trace output in a trace viewer by navigation to trace.axd from the...
on
18 Dec 2009
Blog Post:
Tip#97: Did you know… How to Display Hidden Information in Design View
Web Development Tools Microsoft
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 elements from your page while editing. To enable...
on
30 Sep 2009
Blog Post:
Tip#96: Did you know…You could publish your SQL databases using the SQL Publishing Wizard?
Web Development Tools Microsoft
You can use the SQL Publishing wizard in VS 2008/VWD 2008 to deploy a local database from your development machine to a hosting environment on a remote machine. This is how you will accomplish this: Step 1: Create a new web site by selecting menu File ->New Web Site. Switch to Server Explorer and...
on
27 Sep 2009
Blog Post:
Tip #92: Did you know … How to select a master page using 'Select a Master Page' dialog?
Web Development Tools Microsoft
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' dialog is different for a Web application project...
on
21 Aug 2009
Blog Post:
Tip #86: Did you know… Visual Studio has several different search options?
Web Development Tools Microsoft
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 current block by changing the Look in selection. ...
on
30 Jun 2009
Blog Post:
Tip #84: Did you know… How to set a Start page for your Web Site in Visual Web Developer?
Web Development Tools Microsoft
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 will start your web site with the Set Page...
on
26 Jun 2009
Blog Post:
Tip #82: Did you know... How to migrate Visual Studio 2005 Web Application Project to Visual Studio 2008
Web Development Tools Microsoft
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 will receive the following conversion wizard to...
on
18 Jun 2009
Blog Post:
Tip #81: Did you know... How to Select the CSS Schema for Intellisense and CSS Properties?
Web Development Tools Microsoft
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 aspx or html files, nor the properties/values displayed...
on
18 Jun 2009
Blog Post:
Tip #80: Did you know… How to show JScript validation errors as warnings?
Web Development Tools Microsoft
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 Formatting in VS 2008 SP1" for more detail. With...
on
15 Jun 2009
Blog Post:
Tip #79: Did you know… How to quickly comment and uncomment in your web pages?
Web Development Tools Microsoft
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 shortcut Ctrl+K Ctrl+C to comment and use Ctrl...
on
15 Jun 2009
Blog Post:
Tip# 78: Did you know… How to navigate using Document Outline?
Web Development Tools Microsoft
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 of the page's content and its layout. Double-clicking...
on
12 Jun 2009
Blog Post:
Tip# 77: Did you know… How to enable Page Level Tracing for your ASP.NET pages?
Web Development Tools Microsoft
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 information appears at the bottom of the page...
on
11 Jun 2009
Blog Post:
Tip #76: Did you know… How to hide a non-visual control in your designer?
Web Development Tools Microsoft
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-visual controls using Ctrl+Shift+N Display...
on
9 Jun 2009
Blog Post:
Tip #74: Did you know…How to Add and Remove AJAX Extenders in Visual Studio 2008 Designer?
Web Development Tools Microsoft
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. 2. Drag drop an asp button control to the designer...
on
5 Jun 2009
Blog Post:
Tip #69: Did you know…The keyboard shortcut for View in Browser?
Web Development Tools Microsoft
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 using Ctrl+Shift+W. Reshmi Mangalore SDET, Visual...
on
31 May 2009
Blog Post:
Tip #68 Did you know… How simple it is to attach an existing style sheet to your web page?
Web Development Tools Microsoft
Open an existing web site in VWD. Open the page by double clicking on it in solution explorer to which you want to attach the existing style sheet in your web site. Now, switch to Design View of the page and bring up Select Style Sheet dialog by clicking on menu: Format –> Attach Style Sheet ...
on
31 May 2009
Blog Post:
Tip#66: Did you know... how to insert quotes values automatically while typing the attrib values?
Web Development Tools Microsoft
It's a nice time saver if you would like the HTML editor to automatically add quotes for the attribute values while you are typing. To set this option select Tools->Options. Check Show all settings. From the left pane select Text Editor -> HTML -> Format and check the insert attribute value...
on
29 May 2009
Blog Post:
Tip#65: Did you know...How to quickly create a GridView that is hooked up to a SQL table?
Web Development Tools Microsoft
In Tip#64, we showed you how to convert a GridView's bound fields into template fields. In this tip, we will show you how to quickly create a GridView that is hooked up to a SQL table. Typically, if you want a GridView then you need to add it to the page, and then add the datasource and hook the two...
on
27 May 2009
Blog Post:
Tip#63: Did you know…How to specify a fixed port for Visual Studio Development Server while using WAPs?
Web Development Tools Microsoft
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 on Properties in context menu. This will take you...
on
19 May 2009
Blog Post:
Tip #61: Did you know… How to create an ASP.Net Dynamic Data Web Site?
Web Development Tools Microsoft
If your web site is heavily data driven then here is a quick and easy way for you to create one without writing much code. All you need is Visual Studio 2008 SP1 or Visual Web Developer 2008 Express SP1 installed on your box. Dynamic Data Web Sites makes use of a mechanism called Scaffolding. When Scaffolding...
on
14 May 2009
Blog Post:
Tip#57: Did you know… How to manage web site configuration through a web interface
Web Development Tools Microsoft
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 Configuration for Website For WAP Visual Studio...
on
28 Apr 2009
Blog Post:
Tip # 53: Did you know... How to edit the templates for gridview in VS designer?
Web Development Tools Microsoft
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. I have selected Generate Insert, update and...
on
22 Apr 2009
Blog Post:
Tip # 52: Did you know... When deploying your ASP.NET web application, debug=false should be set in web.config
Web Development Tools Microsoft
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 longer to compile and run, consumes more memory and...
on
14 Apr 2009
Page 1 of 3 (54 items)
1
2
3