Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

viewing aspx files in ie different than visual studio

Status
Not open for further replies.

Programmer2006

Programmer
Jun 29, 2006
12
US
Hi I am viewing my aspx files in internet explorer and the textboxes and list boxes are missing. My labels are showing up though. When I run my project in Visual Studio the textboxes and listboxes show up perfect. This may be a stupid question but how do I view my aspx files in internet explorer?
 
>>Hi I am viewing my aspx files in internet explorer and the textboxes and list boxes are missing

looks like you tried to open it directly like this:

c:\inetpub\..\ASPX file

dont do that. you have to host the file in IIS and then open it using the browser like this:
file

Known is handfull, Unknown is worldfull
 
Even if you run the application from VS, it will run into IE provided it's your default browser.
How are you calling your application to run from VS?
Which version of VS and IE are you using?
How are you calling your application directly into IE?


Sharing the best from my side...

--Prashant--
 
ASP.NET is a server side web programming language. To view the page (i think the right word is 'render' ?), a server must 'evaluate' the aspx's content and then it will return the output to a browser.
 
Another possibility is that the framework installation is corrupt. Try reinstalling the .NET framework.

Jim
 
Also, if you are using VS2005 look at the target schema drop down box. If it is set to something like "Internet Exlorer 3.02" then the pages will appear differently in the designer.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top