I'm not quite familiar with asp.net ajax, so my question might be a silly one.
I'm working on the asp.net ajax control library for self-educational purposes and it is not quite clear to me how to add script/web resources to my class library project.
I've added the following lines to the AssenblyInfo.cs
[assembly: WebResource("BlackGoat.UI.Controls.TooltipControl.Tooltip.js","text/javascript")]
[assembly: ScriptResource("BlackGoat.UI.Controls.TooltipControl.Tooltip.js","BlackGoat.UI.Tooltip", "BlackGoat.UI.Resource")]
The relative path to the javascript file is Controls\TooltipControl\Tooltip.js, however the directories Controls and TooltipControl are not namespace providers so I'm not sure how should I specify the the js file 'namespace' in the AssemblyInfo.cs
Any clarification would be appreciated. Thanks in advance.