Dec 16, 2008
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...
2 comments
Tags: Visual Studio 2008VS2008tips and tricksVisual StudioASP.NETDeepak VermaAjax
Dec 05, 2008
VS 2008 and VWD 2008 both support Nested Master Pages which means you can have a Base Master page which would cater to the whole site and then you can further customize these Base Master Pages. Here is how you do it: 1. Create a BaseMasterPage.master...
3 comments
Tags: Visual Studio 2008VS2008VWDtips and tricksVisual StudioASP.NETVSTS
Nov 26, 2008
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...
1 comments
Tags: Visual Studio 2008VS2008VWDtips and tricksDesignerASP.NETVSTSAjax
Nov 24, 2008
Microsoft's Web Platform Installer has been a cool and simple tool that install's Microsoft's entire Web Platform including IIS 7.0, Visual Web Developer 2008 Express Edition, SQL Server 2008 Express Edition and .NET framework. The user interface gives...
1 comments
Tags: Visual Studio 2008tips and tricksIISASP.NETWeb PI
Nov 21, 2008
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...
1 comments
Tags: Visual Studio 2008VS2008VWDtips and tricksVisual StudioDevelopmentASP.NETVSTS
Nov 19, 2008
Canonical URLs help you to make your links Search Engine Optimized (SEO). For human it is easy to understand that http://www.live.com is same as http://live.com . But many search engines will not make this assumption and treat them as two separate entries...
1 comments
Tags: IISASP.NETCanonical URLURL RedirectSEOURL Rewrite
Nov 09, 2008
Avoid unnecessary round trips to the server - You can use ASP.NET Ajax and partial page rendering. To get more information, see partial page rendering overview and ASP.Net Ajax . Use the Page object's IsPostBack property to avoid unnecessary processing...
1 comments
Tags: tips and tricksASP.NETBest PracticesDeepak Verma
Oct 19, 2008
If you are using ASP.NET Ajax and you are having problems with a web page one quick and dirty way to debug it is to add tracing statements. You do this by using the "Sys.Debug.trace" function. For example: 1: < script language ="javascript"...
0 comments
Tags: DevelopmentASP.NET