29
votes
3answers
24k views
How to make user controls know about css classes in ASP.NET
Since there are no header sections for user controls in asp.net, user controls have no way of knowing about stylesheet files. So css classes in the user controls are not recognized by visual studio ...
25
votes
7answers
5k views
Using SASS with ASP.NET
I'm looking into ways to use SASS (Syntactically Awesome StyleSheets) from the Ruby HAML package in an ASP.NET environment. Ideally, I would like compilation of SASS files into CSS to be a seamless ...
24
votes
8answers
6k views
Anyone have ideas for solving the “n items remaining” problem on Internet Explorer?
In my ASP.Net app, which is javascript and jQuery heavy, but also uses master pages and .Net Ajax pieces, I am consistently seeing on the status bar of IE 6 (and occasionally IE 7) the message "2 ...
24
votes
13answers
2k views
Are there any utilites that will help me refactor CSS
I am working with some CSS that is poorly written to say the least. I am not a design/CSS expert, but I at least understand the C in CSS. While the built in CSS support inside of VS-2008 is far ...
13
votes
3answers
4k views
How to suppress specific CSS 2.0 validation errors in Visual Studio 2008?
A typical CSS property that I use often is overflow-x and overflow-y. Sometimes I use CSS 2.1 or later properties or selectors. These (correctly) raise a validation error:
Validation (CSS 2.0): ...
12
votes
6answers
2k views
Best Practices: CSS or Themes in ASP.NET?
When should I use ASP.NET Themes, and when should I use CSS? What are the advantages or disadvantages of using one over the other?
12
votes
8answers
12k views
Reference app relative virtual paths in .css file
Assume I have an "images" folder directory under the root of my application. How can I, from within a .css file, reference an image in this directory using an ASP.NET app relative path.
Example:
...
11
votes
9answers
6k views
Printing Labels from ASP.Net Page
I am working on an ASP.Net web application that must print dynamically created labels on standard Avery-style label sheets (one particular size, so only one overall layout). The labels have a variable ...
11
votes
6answers
3k views
Is there a ClientScriptManager.RegisterClientScriptInclude equivalent for CSS
The ClientScriptManager.RegisterClientScriptInclude method allows you to register a JavaScript reference with the Page object (checking for duplicates).
Is there an equivalent of this method for CSS ...
10
votes
13answers
341 views
div.classname in css file
I have seen some developers write
HTML:
<div class="test"> some content </div>
CSS:
div.test {
width:100px.
}
What is the purpose of doing div.className instead of just ...
10
votes
11answers
467 views
Is embeding CSS/jQuery code in C# code bad?
I see this type of code when looking through our working code base:
private Button AddClearButton()
{
return new Button
{
OnClientClick =
...
10
votes
6answers
3k views
Browser Caching in ASP.NET application
Any suggestions on how to do browser caching within a asp.net application. I've found some different methods online but wasn't sure what would be the best. Specifically, I would like to cache my CSS ...
10
votes
3answers
792 views
How do I Display Code Samples On Web Pages With Nice Syntax Styling Like Stack Overflow Does?
I would like to be able to pull some code samples out of a database and/or have the text embedded into the website and then have the sample formatted in a code like fashion on the screen. While the ...
10
votes
4answers
4k views
How to take control of style sheets in ASP.NET Themes with the StylePlaceHolder and Style control
Update: This turned into a blog post, with updated links and code, over at my blog: ...
10
votes
4answers
33k views
9
votes
2answers
232 views
How to get Google Prettify to render more like Visual Studio
I'm using Googles excellent Code Prettify and I'm quite happy with it.
But: Does anybody happen to have a alternate CSS stylesheet so it'll render a bit more like Visual Studios default coloring? ...
9
votes
2answers
16k views
Align radio button with corresponding label
I'm using ASP.NET radio button list control.
It generates the following HTML.
<table>
<tr>
<td>
<input ...
8
votes
1answer
76 views
In Ckeditor how to copy/get all formating from a selected text
I am using CKEditor ver.3.6 in my Asp.net MVC 3 Application.
My requirement is to create Paint format option in the Google doc.I need to implement Paint format option in a ckeditor.
In Ckeditor how ...
8
votes
1answer
171 views
CSS + jQuery - Unable to perform .toggle() and repeated jQueryTemplate Item [I must warn you this is a bit overwhelming]
Okay here we go:
Stream.html (Template file)
<div class="streamItem clearfix">
<input type="button" />
<div class="clientStrip">
<img src="" alt="${Sender}" ...
8
votes
4answers
136 views
How can I do this in CSS without using a table?
Normally, this would be incredibly easy with tables, but everyone says tables are bad now days. Most of my web forms will be something like this:
[label] [textbox]
[label] [textbox]
[label] ...
8
votes
1answer
1k views
ASP.NET ListView - Render THEAD/TBODY Tags
I have an ASP.NET ListView control (see below).
Unfortunately, when a ListView control is rendered is does so absent of HTML tags such as THEAD/TBODY.
This is causing a problem for me because the ...
8
votes
3answers
5k views
+50
Html table (text) to image using C#
Can anyone point me to some sample code in C# for converting an html table to image? I know how to convert text to image but i need to create an image of well formatted text. The whole text is ...
8
votes
6answers
9k views
Programmatic solution to change navigation id to highlight current page ASP.NET
I am writing a website with Visual Studio 2008 and ASP.NET 3.5. I have a masterpage set up to simplify the layout and to keep the content pages for content rather than content and layout.
The ...
8
votes
12answers
995 views
Good asp.net (C#) apps?
Any suggestions for good open source asp.net (C#) apps out there which meet as many of the following:?
Designed well and multi tiered
Clean & commented code
Good use of several design patterns
...
8
votes
5answers
2k views
How to set up a CSS switcher in ASP.NET
I'm working on a website which will switch to a new style on a set date. The site's built in semantic HTML and CSS, so the change should just require a CSS reference change. I'm working with a ...
7
votes
5answers
537 views
IE7 and 8 Hangs Randomly on CSS Images
We have an ASP.NET 3.5 application that has been in production for over a year. Our last release was a couple of months ago. We use CSS for styling and application of background images to divs and ...
7
votes
6answers
4k views
How do I make an html link look like a button?
I'm using ASP.NET, some of my buttons just do redirects. I'd rather they were ordinary links, but I don't want my users to notice much difference in the appearance. I considered images wrapped by ...
7
votes
6answers
818 views
CSS on Email
Has anyone found a good way of embeding CSS in a programatically produced email. The best way I have found is to put the style code into a resource file and call it into the code.
An emample would ...
7
votes
8answers
4k views
Change Theme / CSS based on user
I am building a product that we are eventually going to white-label. Right now I am trying to figure out the best way to facilitate these requirements programmatically so the user can update the basic ...
7
votes
7answers
4k views
Force browser to use new CSS
Is there a way to check if the user has a different version of the CSS cached by their browser and if so force their browser to pull the new version?
6
votes
7answers
538 views
how do I get cursor:pointer on an embedded object?
1) I am trying to place a transparent image over an embedded object. I am missing positions, relative and absolute, somewhere. But where?
I am actually placing the transparent image because I cannot ...
6
votes
6answers
334 views
Div's Class not persisting when 'back' button is used
I have an ASP.NET page that contains two div's. Both have search fields and a search button contained within each of them. When I first come to this page, Div A has the class 'SearchDiv' while Div B ...
6
votes
1answer
826 views
Linking a CSS Stylesheet with an ASP.NET Custom Control
I'm developing a custom control which is a composition of tables and buttons. I also have an external CSS stylesheet that defines the styles for these elements.
The Control's type is ...
6
votes
3answers
2k views
How to use ASP.NET Authorization Yet Permit Access to .css Files?
<authentication mode="Forms">
<forms loginUrl="Login.aspx"/>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
I am using forms ...
6
votes
5answers
12k views
Set a CSS class on an ASP.NET RadioButtonList ListItem
Is there any way to set a CSS class on an input item in a radio button list? I'd like to reference these form values by class in jQuery.
Given an ASP.NET RadioButtonList with classes set on the ...
6
votes
2answers
1k views
Why does Visual Studio not resolve my CSS class names?
Whenever I am working in Visual Studio I always found that it will not resolve the css class names in my html. The CSS Class names will appear with the green squiggly line in Visual Studio but then ...
6
votes
8answers
2k views
ASP.NET - script and css compression
Is there any native compression (for javascript/css files) available in ASP.NET?
6
votes
2answers
21k views
How do you modify style in the code behind file for divs in ASP.net?
Currently I am trying to modify a css style attribute for a div based on the information I get from a database table in the code behind of my aspx page. In simplified form the following is ...
6
votes
4answers
10k views
How to use custom CSS with my Sharepoint WebPart?
'ello!
I'm developing my first WebPart for Sharepoint, and now I'm wondering where/how to include/store my CSS. Where should I put my .css files? How should I include them in my webpart?
6
votes
8answers
600 views
Is elegant, semantic CSS with ASP.Net still a pipe dream?
I know Microsoft has made efforts in the direction of semantic and cross-browser compliant XHTML and CSS, but it still seems like a PitA to pull off elegant markup. I've downloaded and tweaked the CSS ...
5
votes
5answers
116 views
Is it possible to conditionally include CSS?
I have an ascx that has some CSS in it. It is possible that this ascx could be added multiple times to a page. The CSS that it uses would only need to be included once.
Is it possible to ...
5
votes
1answer
155 views
Third Party Visual Studio Stylesheet / CSS Editor
Any good (free) style sheet editors that I can use with visual studio? I recently found a resource editor that I found was better than the default version that opens .resx files. I'm thinking there ...
5
votes
2answers
487 views
Find unused CSS rule and js script in a web project?
HI..
My project has many CSS roles and JavaScript scripts that are not used in my project. How can I find these unused files?
5
votes
4answers
637 views
Create a masterpage that fits any screen resolution
I have created a masterpage and I want the ASP.NET pages attached to it to fit any screen resolution. Its a html tables based design.
I read that if you keep tables width and height to 100% then it ...
5
votes
6answers
975 views
How to get rid of copy & paste text styling in ajax html editor
I am using ajax html editor for news description page. When I copy paste the stuff from word or internet , it copies the styling of that text , paragraph etc which overcomes the default class style ...
5
votes
3answers
150 views
Managing ever-growing CSS stylesheets at server-side - are there any libraries, helpers?
When developing large application using ASP.NET (MVC or classic, doesn't matter), especially in large team, it is easy to produce a lot of messy, non-traceable CSS definitions. After some time we can ...
5
votes
4answers
951 views
Using C# to dynamically generate CSS files
I have a site that gets deployed to over a dozen clients. The main website has a base template, and each client has a client folder that overrides the colours. The problem is that there are a lot of ...
5
votes
3answers
131 views
How to version files in the <HEAD> section?
I have seen on various websites how developers version their css/javascripts files by specifying querystrings similar to:
<head>
<link rel="stylesheet" href="css/style.css?v=1">
...
5
votes
10answers
692 views
is there any limit on css file size?
I am using ASP.NET MVC to develop a site. The CSS file has grown to 88KB and is having a little more 5,000 lines. I noticed recently that styles added at the end are not there in the browser. Is there ...
5
votes
2answers
532 views
How to add two CSS Class to control in the code behind?
I am setting 2 css class in the code behind in ASP.NET
I could either do:
txtBox.Attributes.Add("class", "myClass1");
txtBox.Attributes.Add("class", "myClass2");
it's always apply one Class .. How ...