My posts tagged with "tips and tricks"(RSS)

Tip #37: Did you know…How to organize usings?

Overtime C# source code files may have unnecessary & unorganized using directives. Visual Studio IDE organize using options can help you to unclutter the source code. To organize the C# code right click anywhere inside the code editor, select Organize...

Tip #35: Did you know…How to add Intellisense from script libraries for JS files?

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...

Tip #33: Did you know… How to create Nested Master Pages using VS 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...

Tip #32: Did you know... How to easily create your own project templates?

Visual Studio makes it very easy to create item and project templates with the Export Template Wizard. Open the wizard by selecting Export Template... from the file menu. Note: For this tip I am using the Jobs Site Starter Kit . After selecting Export...

Tip #31: Did you know... How to have user friendly URL using IIS 7.0 URL Rewrite module?

It's always good to have friendly URL so that people visiting your site find it easier to remember. Asking your user to remember http://www.contoso.com/article.aspx?id=342&title=URL-Rewrite-Walkthrough for URL Rewrite walkthrough is not the nicest...

Tip # 30: Did you know... Ajax Extender controls UI behaves differently in VS 2008 than in VS 2005

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...

Tip #29: Did you know… How to enable Edit and Continue feature for Web Application Projects?

If you want to edit your WAPs while debugging them, here is how you do it: 1. Check the “ Enable Edit and Continue ” checkbox in the Web Properties page. 2. Check the “ Enable Edit and Continue ” checkbox under  Tools->Options->Debugging->Edit...

Tip #28 Did you know… That “Go to definition” is supported for CSS Class?

If you have a style defined as Class = ”fooRed”   as shown below and want to quickly know what does fooRed style contain? < div class ="fooRed"> In RED </ div >   Just place your cursor on fooRed and hit the F12 button...

« First ...  « Previous  3 4 5 6 7  Next »  ... Last »

Microsoft Communities