Visual Studio :: Cascading Style Sheets Requesting Data?

Feb 4, 2010

I have a cascading style sheet attached to my html (and they are both saved in the same file on my hard drive), but there are times when I close Visual Web Developer 2008 Express Edition (end of the day or whenever) and reopen it (the next day or a few hours later) to work on the same html, the style do not show up (the bottom of the screen says "Requesting Data...") and there is a clock next to the style sheet in the apply styles window. It never seems to request the data, and usually I have to open a new html page, save it in the same file, and copy the information over. Some times I have to do this 2-3 times before the style sheet will attach. If I open it in another html editor, the styles show up, but that editor does not have all of the functions that I need.

View 3 Replies


Similar Messages:

Why Is Visual Studio 2010 "Requesting Data"

Jan 22, 2011

I have a strange problem that I see when switching to the ASP.NET designer in VS2010. It doesn't happen every time but once it's happened once it continues every time until I reboot.

Basically, when I click the "Design" button/tab to switch from the HTML to the designer, the text "Requesting Data..." appears in the status bar and the mouse pointer changes to and arrow with a spinning wait indicator. When this happens, the mouse continues to work but the keyboard input starts to fail. I can usually type but can't backspace or delete and I can't cut, copy or paste. Every other application continues to function normally so it's isolated to VS2010. It's also only affecting the designer. If I hit the "Source" button/tab to go back to the HTML, everything returns to normal.

This happens on really basic pages. My pages have a master page but the master page and the normal pages only contain basic html tags and the odd ASP.NET textbox or button.

View 1 Replies

Web Forms :: How To Use CSS Style Sheets In Webpages

May 5, 2010

How do I link a control to an external style sheet? What folder do I put the external style sheet in?

View 2 Replies

Web Forms :: Load Style Sheets Dynamically With Database?

Apr 15, 2010

I have been looking for the last day since some who was nice enough to suggest I change the look of my web application theme by haveing different css sheets. I have found many references to

<link runat="server" rel="stylesheet" id="cssIE" type="text/css" />

cssIE.Href = "CSS/StyleSheet1.css"

the thing I want to do is

cssIE.Href = "CSS/" & stylesheet_name

where stylesheet_name is a value from a database entery

The css file has loaded into the app fine and I know the value of stylesheet_name does return what I want because I sent it to a label control and the file name comes up.

View 4 Replies

Web Forms :: Conditional Style Sheets In Master Page URL Rebasing?

Oct 15, 2010

I have two conditional stylesheets referenced in the head of my master page. Because the are contained in conditional comments to show for IE6 and IE7, the relative URL to the css file isn't getting rendered correctly. Is there any way to rebase the URL within conditional comments as can be done for import css references? Current code below:

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="xxx_web.master.cs" Inherits="website_master_xxx_web" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>xxx website</title>
<link rel="stylesheet" type="text/css" media="screen" href="../css/xxx_web_basic.css" />
<link rel="stylesheet" type="text/css" media="screen" href="../css/xxx_web_structure.css" />
<!--[if lte IE 6]>
&nbsp;<link rel="stylesheet" type="text/css" media="screen" href="../css/xxx_web_ie6.css" />
<![endif]-->
<!--[if lte IE 7]>
&nbsp;<link rel="stylesheet" type="text/css" media="screen" href="../css/xxx_web_ie7.css" />
<![endif]-->
</head>

View 1 Replies

C# - Script / Style Getting Cached In Visual Studio 2010 Express

Feb 12, 2011

I'm working on a personal project in Visual Studio 2010 Express edition, using ASP.NET & C#. When i debug my web pages, for some reason a few of my css & script files don't reflect the changes i've made to them. When i check their content using firebug, i see it's the old un-modified content, as if a cached copy was used instead of the new changed one. This doesn't happen with all the files, only a few. I tried restarting visual studio, deleting and adding the style/script again, but to no avail. I still see the old copies instead of the new ones.

View 1 Replies

Create Visual Studio Style Class Diagram In Visio?

Feb 4, 2010

I need to plan out a Class, Method, Attribute style diagram, I have looked at the Class Designer in Visual Studio, but it seems to not do what I want. I want to be able to have a diagram show the classes just like in Visual Studio - except I want to be able to represent the parameters these methods require, for example:

getStock(StockID)

And this be shown in the Diagram. This is for an ASP.NET website - what are the best ways of creating a diagram for a website like this to represent the methods - I don't want to start generating classes - which is why I want to use Visio, plus I am more familiar with Visio than the Visual Studio Class designer as I mostly use the Express line of products which don't feature this. I want this for example for Default.aspx:

Default.aspx
(View)

Methods:

- FeaturedStock()
- GetStock(StockID)
- ShowContent()
- ShowImage(StockID)

I don't want to use UML as this is too confusing - the Visual Studio Class diagram is close to what I want but I cannot get it to show the Parameters on my Methods. My main aim is to have "stubs" for each method a page requires to implement that functionality as a Developer this is the easiest way I can plan out this project.

View 2 Replies

Visual Studio :: 2010 Tab Menu Changing The Class / Style?

Apr 20, 2010

I have a trial version of VS2010 and created a simple out of the box ASP .Net web application. I have been playing around with the css file for the project and have yet to figure out how to effect the menu tabs.

View 2 Replies

Visual Studio :: Design View Does Not Apply Theme's Style Sheet?

Mar 16, 2010

I have a webapp with a Masterpage and 4 or so content pages. I have created a theme folder with a style sheet. I put the <pages theme="Default" in the web.config. When I run the app all the styles in the style sheet apply and it looks great. But design view does not apply the styles from my theme. Design view does not use the web.config setting or something. How do I get design view to apply the theme styles.

View 2 Replies

Visual Studio :: Disable Auto-insertion Of Quotes For Style And Class?

Apr 1, 2010

I am having problems disabling the autoinsertion of quotes for the 'style' and 'class' attributes on VS2008 SP1 on 64-bit Windows 7.

When I type:

<div class="

I end up with

<div class="""

In Tools->Options->Text Editor->HTML->Format, I set "Insert attribute value quotes when typing" off (and "...when formatting" is also deselected) but it still seems to insert the quotes.

why automatic quotes might be disabled for everything but style and class attributes?

View 4 Replies

Visual Studio :: Apply A Style Sheet To A Table On Default Page?

Apr 19, 2010

How do I apply a style sheet to a table on my default page

View 3 Replies

Visual Studio :: How To Convert Whole Visual Studio 2008 Web Site Project To Visual Studio 2010

Aug 14, 2010

is it possible to convert whole visual studio 2008 web site project to visual studio 2010 web site project

my current project references

i have a very annoying iis problem

iis server stops working until app pool is recycled

i am hoping that new visual studio (net framework 4.0) may solve this very annoying unsolveable problem

View 2 Replies

Visual Studio :: Opening Visual Studio 2008 Project In Visual Studio 2010?

May 21, 2010

Anyone know if I can maintain a VS 2008 (.net 3.5) project by using the VS 2010 IDE ?

View 1 Replies

Visual Studio :: Visual Source Safe Plug In Control For Visual Studio 2005 IDE

Jan 28, 2010

where to find/download visual source safe plug in or visual source safe client for visual studio 2005 IDE?

I do not want to install visual source safe 2005 server.

View 1 Replies

Visual Studio :: Migration From Visual Studio 2003 To Visual Studio 2010?

Apr 15, 2010

Is it possible to migrate the application which is in visual studio 2003 to visual studio 2010. provide me details about how to migrate.

View 2 Replies

Visual Studio :: Migration From Visual Studio 2005 To Visual Studio 2010?

Jun 16, 2010

I have a site in production developed in 2005 and i am planning to migrate to Visual studio 2010. Is there an easy way to do it?

View 1 Replies

Visual Studio :: Visual Source Safe 2005 + Visual Studio 2010,?

Feb 28, 2011

I want to use a source control in VS2010, I know my best bet is TFS, but at the moment TFS(can't afford ). As i understand TFS is the new VSS_2005(can afford)Can VSS 2005 be use as a source control for VS 2010 solutions/projects?

View 2 Replies

'Add Config Transforms' And One Click Publish Option Not Working When Upgraded From Visual Studio 2005 To Visual Studio 2010

Jul 28, 2010

I just recently upgrade my asp.net web project from visual studio 2005 to visual studio 2010. The upgrade was successful with no problems however im missing some features with this project. The One Click Publish feature(which is greyed out) in the header area of Visual Studio 2010 and the Add Config Transforms feature which is no where to be seen when you right click on web.config. When i create a new web project straight from visual studio 2010, these options work fine.

View 1 Replies

Visual Studio :: After Having To Do A Devenv /resetuserdata To Get Visual Studio 2010 Beta 2 Back, AJAX Drag Panel?

Mar 9, 2010

Visual Studio 2010 Beta 2 locked up, and when I tried to restart it, it wouldn't load, so I did a devenv.exe /resetuserdata to get it going again. It reset everyhing in my options of the web app/ etc, and now some AJAX conrols don't work such as dragpanel. I assume that it is because something got reset that I haven't enabled again, but can't figure it out.

View 2 Replies

Visual Studio - What Is Best Option In Visual Studio 2010 To Sync Project Files Between Home & Work Computers

Feb 14, 2011

Im working on a website project with Visual Studio 2010 from 2 different computers (home & work).
In Dreamweaver Im used to FTP to upload/download files to/from a webserver to syncronice my files on the current computer Im working on.What is best option in Visual Studio 2010 to sync project files between home & work computers? I have seen there is a built in FTP, but seems only it can upload files, limited functionality?

View 1 Replies

Visual Studio :: Can Visual Studio 2008 Be All In One Tool To Integrate Source Code Continuously

Jan 20, 2010

can Visual Studio 2008 be All-In-One tool to integrate source code continuously from team members, build, unit test?

Having used Visual Studio Team Edition 2005, unit testing each method within VS itself. I strongly believe that it is feasible to add-on tools. Example ankhsvn tool to use SVN from Visual studio [URL]

In my investigating i have come across number of tools(shown below) to use with Visual Studio 2008 professional

Development tool:- Visual Studio 2008 professional using Subversion as source control tool. Continuous Integration:- Hudson or Cruise control Build tool:- NAnt Testing:- NUnit, Selinium As Visual Studio 2008 can be used for unit testing I think NUnit is out of consideration.

In the same way i would like to have any other tools/add-ons to Visual studio to implement continuous integration, building and unit testing. This process should be automated such a way source code between team members is continuously integrated, built and unit testing is done as configured.

Objective is to use few number of tools as add-on to Visual Studio or achieve most from Visual studio itself (example unit testing). Visual Studio should be all in one tool.

I am aware that Team Foundation Server best suits my requirement, but it is out of scope due to its cost.

View 3 Replies

Visual Studio :: Unrecognized Tag Prefix Or Device Filter Error In Visual Studio 2005?

Dec 13, 2010

I am building master page in visual studio 2005 and I have placed contentplaceholder into between <head> and </head> tag of master page, but in source view of visual studio 2005, I am getting error that says "unrecognized tag prefix or device filter" how do i get rid of this error or is this bug in visual studio 2005

View 2 Replies

Visual Studio :: Visual Studio 2010 Missing Ajax And No Web.config When Creating New Project?

Sep 28, 2010

when i opened my Visual Studio 2010 i noticed that my ajax tab was missing from my toolbox and ajax control kit too.Then i noticed even that when i create new website, there is no web.config in it and it should be.WHAT IS GOIN ON???? :/

View 13 Replies

HttpHandlers / Modules :: Visual Studio + Iis 7 / Press F5 In Visual Studio Project Work With Url Rewrite?

Apr 1, 2010

i install url rewrite iis module to my computer i want when i press f5 in visual studio my project work with url rewrite how can i this?my web sites is not seeming in iis.

module=http://www.iis.net/expand/URLRewrite

View 1 Replies

Visual Studio :: Unable To Install Visual Studio 2008 Professional Edition?

Aug 8, 2010

I downloaded Visual Studio 2008 Professional Edition via torrent.

It was working fine for months & i formatted my comp & when i tried to reinstall it is not getting installed !

It shows the following error !

and the error log file seems to be like this...

BUT.,

I'm able to use Visual Studio & i'm able to work in it....

I'm re-installing since 2 days for more than 4 times...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved