Tagged Questions
8
votes
2answers
2k views
Using JQuery as an ASP.NET embedded webresource
I have an ASP.NET server control which relies on JQuery for certain functionality. I've tried to add as a webresource.
My problem is my method of including the jquery file adds it to the body, or the ...
3
votes
2answers
603 views
Programmatically modifying an embedded resource before registering/referencing it on the page
Firstly, "Modifying" may be the wrong term, I see a few people have posted online just asking whether they can actually modify an embedded resource. What I am wanting to to, is use a resource in my ...
3
votes
1answer
1k views
ILMerge and Web Resources
We're attemtping to merge our DLL's into one for deployment, thus ILMerge. Almost everything seems to work great. We have a couple web controls that use ClientScript.RegisterClientScriptResource and ...
1
vote
1answer
30 views
WebResource is not working on the host
I have a class library project which contains a java script file "libscript.js" which is located in the library/Resources/Scripts folder.
I marked "libscript.js" file as an Embedded Resource from ...
1
vote
1answer
92 views
Asp.NET Webresources with better URL
it is possible to write own "webresources provider" in asp.net to change webresources URL which looks like:
WebResource.axd?d=qoS8iGdUsV4f8NgR_HS-hHWgRO2CDfStRaaqn7oJ2xBuwIMbn27JNufuUMn-aVlK0&
...
1
vote
3answers
576 views
Reasons why WebResources cannot be found
Hi I am having trouble getting an embedded js file to work.
I have tried all of the following:
Running Cassini development server (VS2008, .NET 3.5)
Added [assembly: ...
0
votes
1answer
75 views
Using and accessing Webresource
I know this has been asked before. Yes, i did my research but it doesn't seem to be working for me so i hope you experts can help me out :)
Here's what my Project looks like
...
0
votes
1answer
140 views
Embedding a Bitmap in ASP.NET's WebResource
I am generating a System.Drawing.Bitmap on the fly in an ASP.NET Custom Web Server Control, and then I want to serve this bitmap as part of the WebResource, because I do not want to save it on the ...
-3
votes
2answers
114 views
Hook a function in place of existing function in javascript
I am trying to override one function by replacing it with a different version. The function which I am trying to override is defined in a web resource of a control. But, I have tried the same for ...