Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
42 views

How can I list available Css Classes from my App_Themes folder?

How to get a list of Css classes from a chosen Theme in App_Themes folder and display them in a DropDownList control? Any suggestions on this would be highly appreciated. Thanks.
2
votes
3answers
222 views

Themes Vs. Old School Stylesheets

I have been developing websites with ASP.NET for quite a while. When I first learned how Themes and Skins work in ASP.NET, I found that it's great and easy and all. But later on, I started to find ...
2
votes
2answers
895 views

app_themes css files and version number

I would like to be able to have a version number appended to a css file located in my app_themes folder in my asp.net website so that modification to the file would force the browser to get the file ...
2
votes
2answers
1k views

asp.net 2.0 global themes not working on new windows server 2008

We're migrating our .net 2.0 websites from a Windows 2003 server (32 bit) with IIS6 to a Windows Server 2008 (64 bit) box with IIS7. I can't seem to get the global themes to work. Same ...
1
vote
2answers
103 views

How do i convert a jqueryui theme to Asp.net Theme

Just got puzzled and lost on this, i downloaded the jQueryUI Cupertino theme for a personal project. I do know how to use it when on single page, but just got stumped on how to convert the theme to a ...
1
vote
1answer
224 views

ASP.NET MVC - Any reason to use App_Themes?

Is there any advantage to ASP.NET's App_Themes folder that could be taken advantage of in ASP.NET MVC, or is using them from the Content folder as normal the best way to handle resources like images, ...
1
vote
0answers
69 views

Does setting a theme in my Android App take care of memory leaks?

I'm working on an app with a lot of activities, and each activity uses the same background. It appears that having one background set to multiple activities will cause that background image to be ...
1
vote
0answers
225 views

Adding a sub path for App_Themes in ASP.net C#

I am going to be using my App_Themes folder for three separate sites running from the same environment, so will have a folder structure like: App_Themes/SiteUK/Default App_Themes/SiteUS/Default ...
1
vote
1answer
313 views
1
vote
2answers
928 views

Add url parameter to css file in asp themes folder

I have written a bit of code that helps with versioning of js files. Essentially it spins around the current script manager and appends the javascript file path with an md5 hash of the file. So ...
1
vote
2answers
379 views

Load WPF themes based on Monitor Resolution

I facing quite big problem with resolution in my WPF app, which will be used in Hospitals, customer is asked for BIG fonts and Controls so that they can see data clearly from the distance. The ...
0
votes
0answers
92 views

ASP.NET App_Themes in CDN

I want to put App_Themes folder in CDN. Is there is a way to support this in ASP.NET? I tried it using VirtualPathProvider but it does not seem to work since I need directory listing and I don't like ...
0
votes
0answers
58 views

GoDaddy, nested websites, and App_Themes

I hate to ask this but this is my first time having to develop in a GoDaddy environment and I have some issues. The client has a series of websites hosted in a directory structure like the following: ...
0
votes
1answer
72 views

asp webform with no ties to a master page is pulling masterpage include files

In my asp.net web application I created a new web form (with NO master page). The code to this page looks like this: <%@ Page Language="C#" AutoEventWireup="true" ...
0
votes
2answers
362 views

App_theme not adding styles to web page

I have a web site project that uses an App_theme folder for styles. When I run the site the styles are not applied to the site. What is going on? It works on other developers computers, but they are ...
0
votes
1answer
226 views

Themes wont work when using Server Side Tags on an ASP.NET Page

The code for the asp.net page is: <div class="facebox_content"> <% if (CurrentUser.Role == "Free") { %> <table cellpadding="0" cellspacing="0" ...
0
votes
1answer
378 views

ASP.NET themes: How to tell if a theme name is valid before setting it as the theme of a page

I imagine this would be simple, but I can’t find an answer. We set the theme of a page based on a query string parameter (like ‘?theme=theme1’ etc). I just want to know if there is an easy way to ...
0
votes
1answer
57 views

Can you move (or duplicate) the “special” .Net folders (App_*) in a subdirectory?

It is possible to have extra .Net "special" folders (App_Code, App_Themes, etc.) inside of a subdirectory, rather than in the root? I am integrating with a CMS that dumps an enormous amount of stuff ...
0
votes
2answers
618 views

App_Themes image gets requested from css

Normally when you have items like images or css in the theme folder they get nicely parsed and the url omits the App_Themes part. However I noticed for some background images, set in the css which ...
0
votes
1answer
139 views

How can I get a change in resources to propagate throughout the application, including in ValueConverters?

I have an application that allows the user to change color schemes based on an external xaml file. When the user clicks on a MenuItem that contains the name of a theme, the following code executes: ...
0
votes
1answer
123 views

Themed based usercontrol asp.net

Is there any way to use a specific usercontrols depending on which theme the site is using? Scenario: I am using themes in my asp.net project. I am going to have same codebase and different look and ...