Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
1answer
145 views

MS Dynamics CRM, Web resources (.html) and “custom” Doctype

I'm trying to create heat map on bing maps ajax control using some data from CRM database. For that I created web resource and uploaded it to CRM. I set up button which when clicked open my web ...
3
votes
2answers
578 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 ...
2
votes
1answer
130 views

WebResource.axd not found

I can't get script files to load on my website. Everything else works fine. I haven't tried ScriptResource.axd however. I have verified this issue exists on both cassini and IIS7. I have verified my ...
2
votes
2answers
244 views

Equivalent of http://www.cplusplus.com/ for C# .net

I've read through a lot of the "Learn C# .Net" questions just to see if this question was answered already (directly or indirectly). I program mostly in C++ so I find the website ...
1
vote
1answer
21 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
88 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
537 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
2answers
55 views

WebResource 404 Hell - can't get JavaScript included in Web Part

I've tried really hard to include a JavaScript file with my WebPart as a resource. The web part class and the flexidgrid.js file are both in the root level of the project. The Web Part is created in ...
0
votes
1answer
63 views

Integrated Authentication on dynamic/embedded Webresource.axd under IIS6

Is it possible to force Integrated Authentication on a dynamically created embedded resource under IIS6? For those of you who don't know what a Webresource.axd is...it's the dynamically created ...
0
votes
1answer
226 views

Jersey Rest: Importing headers from a Map into a WebResource instance

I am trying to take in an arbitrary set of HTTP headers and dump it into a WebResource instance. The WebResource interface allows one to do this with query parameters as it offers both a ...
0
votes
1answer
162 views

Embedded Resources accessed by WebResource.axd links not working in production environment

Ok, this has me stumped. I have several server controls defined in a VB.NET .NET 4 project, lets call it WebControls, to be shared with other projects in the solution. WebControls uses embedded ...
0
votes
1answer
41 views

Exclude webresources from obfuscating with babel?

I'm obfuscating a DLL which contains an embedded webresource, however when I try to add it to the page using ScriptManager.RegisterClientScriptResource I get a YSOD Web resource ...
0
votes
1answer
71 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
137 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
110 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 ...