Tagged Questions
The static-resource tag has no wiki summary.
3
votes
1answer
42 views
What would be a good strategy for a variable for prefixing a static resource?
We are scaling a website and we would like to plan for the future where we may want to host our images in a sub-domain (or perhaps even a separate domain altogether, e.g. a CDN). We currently ...
3
votes
3answers
713 views
Question about ASP.NET MVC and static data (ie. images, scripts, etc)
If i have a request for a resource in my ASP.NET MVC1 (or 2) web app for a static resource, say ... an image or a javascript file or a css file ... does the .NET framework try and see if the request ...
2
votes
4answers
5k views
Chrome warning about static resource (css/gif/png/js)
When ever the web page is loaded i am getting warning in the debugger as
Resource interpreted as stylesheet but
transferred with MIME type text/plain.
I am getting the above warning when the ...
2
votes
1answer
537 views
Error when using StaticResource
I'm getting this error
Attribute {StaticResource
StoryboardIntroAnimation} value is out
of range
when I try and use a staic resource as the Storyboard property of a BeginStoryboard object. ...
1
vote
3answers
123 views
ASP.NET MVC - what is the earliest point in the request cycle where you can detect a static resource request?
To give the question some context, I've written a profiler which is called on Application_BeginRequest but it's logging everything (ie javascripts, images etc). While it would be possible as a last ...
1
vote
0answers
94 views
How to serve the images in JBoss faster
The requirement for my project is that user uploads the picture.
Options that I came up with :
To store the image as BLOB in DB.
Save the image into a folder on my server.
But I chose the second ...
1
vote
2answers
508 views
Where should common static resources (images, js, css, etc) go in DotNetNuke?
Is there a recommended location to store static resources (images, css, js, etc) in a DotNetNuke 5.x installation?
There are /images and /js folders as well as a /Resources folder that contains ...
1
vote
1answer
198 views
Can I use UIPerformance grails plugin and host my static resources in another domain?
The UIPerfomance plugin is an easy way to speed up your web pages by applying some of the best practices rules from Yahoo performance team (like minifying, setting a far-future expires header, ...
1
vote
1answer
4k views
Binding a datacontext string property to a StaticResource key
I have an List values with a ResourceKey and a Caption, these values are both strings. The Resource is the name of an actual resource defined in a resource dictionary. Each of these ResourceKey Icons ...
1
vote
3answers
3k views
XAML - StaticResources in Collection Initializers
I want to add a single model object that has been instantiated once in XAML, and add it to two different collections (in xaml).
The following code renders fine in Blend's Design Time, but I get the ...
0
votes
0answers
22 views
What does getStaticResourceURL() does in Liferay?
What is the role of the getStaticResourceURL() method?
If I pass request.getContextPath() + mypath to it (without a timestamp), what it can change? If I pass some timestamp, what it can change ...
0
votes
1answer
417 views
Maven Jetty 7 & static resources
I would like to change our infrastructure to take benefits of Jetty and rapid application development.
Shortly I would like to serve static content. I found such an explanation at Jetty ...
0
votes
2answers
148 views
Android App Static Storage
I am creating an Android application which will have some embedded music inside of it ( ~ 80 MB ). I was planning on putting it in the res/raw folder.
Since android stores that all in it's internal ...
0
votes
2answers
1k views
Tomcat serving static resources on Spring MVC app
I'm building a Spring MVC application, and the frontController servlet is mapped in "/" intercepting all requests, I'd to be able to serve the static contents (.js,.css,.png...) from tomcat and not ...
0
votes
3answers
478 views
java:how to hide static resources like html ,images from user on jboss platfrom?
I have developed a java 1.4 web application.Application is deployed on jboss(tomcat).
suppose my folder structure is
mainfolder(contains subfolders and jsp pages)
images(contains all of ...
0
votes
2answers
828 views
How to expose properties of a WPF DataTemplate?
I have a data template that I use in many pages, the data template contains a few buttons, I want to hide some of these buttons by triggers (I mean setting the IsEnabled Property of these buttons in ...
0
votes
1answer
2k views
Reuse of StaticResource in Silverlight 2.0
I am currently testing with Silverlight 2.0 Beta 2, and my goal is to define a resource element once and then reuse it many times in my rendering. This simple example defines a rectangle (myRect) as ...