Contents tagged with Ajax
-
Tip#62: Did you know… How to add Ajax Control Toolkit to the toolbox?
Steps to add Ajax Control Toolkit for Framework 3.5 SP1
Steps to add Ajax Control Toolkit for Framework 2.0 -
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 filesJscript1.js with the following code
function validateForm() {
}and Jscript2.js (wherein you want current JScript file to show intellisense including objects & functions declared in Jscript1.js)
Now to add intellisense, from the solution explorer drag drop Jscript1.js into Jscript2.js.
You will notice that the following Jscript document comment has been added to the Jscript2.js file./// <reference path="JScript1.js" />
And now you can start using the intellisense, try typing in validateForm in Jscript2.js.Thanks,
Deepak Verma
SDET | Visual Web Developer -
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, if the control can support the extender, you would see the cursor turn into a plus (+) sign. If you hover an extender over the blank design surface, or over a control which is not supported by the extender, the cursor will turn into a stop sign which indicates that it can't be dropped at that position.