Simply drag-n-drop the jQuery library from Solution Explorer to the opened external JavaScript file.
The Intellisense should work now.
The folder must be named App_Themes.
|
iisdefaultroot\aspnet_client\system_web\version\Themes
C:\Inetpub\wwwroot\aspnet_client\system_web\version\Themes
The folder name for global themes is Themes, not App_Themes, as it is for page themes.
|
<asp:Button runat="server" BackColor="Red" ForeColor="White" Font-Name="Arial" Font-Size="9px" />
A convenient way to create a skin is to add the control to a page and configure it so that it has the look you want. For example, you might add a Calendar control to a page and set its day header, selected date, and other properties. Then, you can copy the control definition from the page to a skin file, and then remove the IDattribute.
|
You can define only one default skin per control. Use the SkinID attribute in the skin's control declaration to create a named skin that you can apply to specific instances of a control.
|