views:

71

answers:

2

So I just got a C# program from someone that compiles and gives me a fully functional application. However, when I want to see the .cs{Design] file it gives me the following error:

.ErrorStyle { font-family: tahoma; font-size: 11 pt; ....

How can I convert this to an actual Design file? I am working on Visual Studio C#. Thank you very much.

A: 

That looks like a CSS error. Do you have a screenshot of the error or screen that is incorrect?

Tejs
All I am getting is:<html><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"><title></title><style>.ErrorStyle { font-family: tahoma; font-size: 11 pt; text-align: left}.DetailsStyle { font-family: tahoma; font-size: 10pt; text-align: left;text-indent: 0; word-spacing: 0; line-height: 100%; float: left; margin-top: 0; margin-bottom: 0}.StackStyleVisible { font-family: tahoma; font-size: 10pt; text-align: left; margin-left: 20; text-indent: 0}.StackStyleHidden { display:none; font-family: tahoma; font-size: .....
George Tyler
A screen shot would definitely help in your issue. Either something in the project is broken and you're getting a pretty strange error message in code editor or this is the trace to some HTML type error. Where is the error displayed and in what context?
jlafay
A: 

This sounds like an error is being generated and all your seeing is the HTML version of the error. You need to get all the html throw it in a text file and view it as a html doc. Then you can see what the real error is.

g.foley