Apr 24, 2009
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...
8 comments
Apr 24, 2009
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...
1 comments
Apr 22, 2009
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...
6 comments
Tags: Visual Studio 2008VS2008tips and tricksDesignerASP.NETDeepak VermaData
Apr 14, 2009
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...
5 comments
Mar 31, 2009
VS2005 does not debug with IE8 by default, due to IE8’s LCIE feature ( http://blogs.msdn.com/ie/archive/2008/03/11/ie8-and-loosely-coupled-ie-lcie.aspx ). To enable it, please follow the instruction in this thread: http://social.msdn.microsoft.com...
2 comments
Mar 31, 2009
Absolute positioning control(s) in the designer can seem confusing at first until you learn the visual cues. You can do one of the following two possible actions by dragging the control in the designer. Re-parent the control Change the controls position...
1 comments
Tags: Visual Studio 2008VWDtips and tricksDesignerASP.NETVSTSVisual Studio 2008 SP1
Mar 30, 2009
In Visual Studio, click Tools -> Options. In the Options dialog on the left pane select Text editor -> JScript -> Formatting. Check Place open brace on new line for functions. Deepak Verma SDET | Visual Web Developer
1 comments
Tags: Visual Studio 2008tips and tricksVisual StudioDeepak VermaEditorVisual Studio 2008 SP1JScript
Mar 30, 2009
IIS7 app pool by default only can only have 1.5 minutes window for a non-responsive application. During IIS web application or website debugging time, we may want to change its corresponding application Pool advanced setting’s “Ping Maximum Response...
1 comments
Mar 27, 2009
When doing remote front page debugging using visual studio 2008 in windows 2003 or windows 2008, one might found the breakpoint in the script cannot be hit. A likely reason is that we need to turn off Internet Explorer Enhanced Security Configuration...
2 comments
Mar 27, 2009
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...
1 comments
Mar 27, 2009
ASP.NET Dynamic Data is a framework that lets you create data-driven ASP.NET Web applications easily. It does this by automatically discovering data-model metadata at run time and deriving UI behavior from it. By default for a Dynamic data Web Application...
2 comments
Tags: tips and tricksVisual StudioASP.NETDeepak VermaDynamic DataVisual Studio 2008 SP1
Jan 29, 2009
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...
1 comments
Jan 20, 2009
To get your custom IHttpModule up and running you need three simple things: Source code Compiled and GAC’ed DLL Registration with IIS config system Suppose, you have a simple module that raises an event with HttpContext as an argument before authentication...
1 comments
Tags: IIS
Jan 11, 2009
If you want to write a script to add new or update existing configuration, no matter what configuration file it belongs to (e.g. administration.config, applicationHost.config or website or application specific web.config), you can install Configuration...
2 comments
Tags: IISConfiguration Editor
Jan 04, 2009
Either through WMSvc or through your own script, whenever you try to establish a connection with a remote server, which doesn’t provide a trusted certificate you need to provide a delegate for this certificate validation check to validate untrusted...
2 comments
Tags: IISremote connection