473,665 Members | 2,820 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Dispalying asp pages

I am haveing trouble with displaying asp.net pages on my internet explorer.

I just want to be able to run on my own computer not the internet.

Internet explore just shows my the code.

At First netscape seemed to be a better alternative, but my Web Matrix in
design mode showed
the buttions correctly, but the netscape wouldn't.

I have SAMS ASP.NET UNLEASHED by Stephan Walther and his buttons wouldn't
show up in netscape.
Mar 31 '06 #1
10 1183
<mm*******@usfa mily.net> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I am haveing trouble with displaying asp.net pages on my internet explorer.

I just want to be able to run on my own computer not the internet.


Operating system?
Web server?
Development software?
Mar 31 '06 #2
1. Do you have IIS installed ?
You need to have installed IIS in your computer
to be able to display ASP.NET pages in your browser.

You need to have, at least, Windows 2000 or Windows XP Pro
to be able to run ASP.NET.

Which operating system are you using ?

2. How are you calling the pages ?

If you have already installed IIS, you must use a virtual address
to display an ASP.NET page.

i.e., you cannot run ASP.NET from a file system address like :
drive:\Inetpub\ wwwroot\somepag e.aspx

You must use :

http://NameofYourComputer/somepage.aspx
or
http://localhost/somepage.aspx
or
http://127.0.0.1/somepage.aspx
or
http://some.IP.address/somepage.aspx

All of those addresses will display
somepage.aspx if it is located in drive:\Inetpub\ wwwroot.

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
<mm*******@usfa mily.net> wrote in message news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I am haveing trouble with displaying asp.net pages on my internet explorer.

I just want to be able to run on my own computer not the internet.

Internet explore just shows my the code.

At First netscape seemed to be a better alternative, but my Web Matrix in design mode showed the
buttions correctly, but the netscape wouldn't.

I have SAMS ASP.NET UNLEASHED by Stephan Walther and his buttons wouldn't show up in netscape.

Mar 31 '06 #3
You need to repair your IIS mappings.

Here are the details:
http://SteveOrr.net/faq/3in1.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
<mm*******@usfa mily.net> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I am haveing trouble with displaying asp.net pages on my internet explorer.

I just want to be able to run on my own computer not the internet.

Internet explore just shows my the code.

At First netscape seemed to be a better alternative, but my Web Matrix in
design mode showed
the buttions correctly, but the netscape wouldn't.

I have SAMS ASP.NET UNLEASHED by Stephan Walther and his buttons wouldn't
show up in netscape.

Mar 31 '06 #4
I have widows XP Personal. I don't know what the web server means. I used
webex but I also used a free
plain-text editor.

"Mark Rae" <ma**@markN-O-S-P-A-M.co.uk> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
<mm*******@usfa mily.net> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I am haveing trouble with displaying asp.net pages on my internet
explorer.

I just want to be able to run on my own computer not the internet.


Operating system?
Web server?
Development software?

Apr 1 '06 #5
I don't know what IIS. I only have windows XP personal. not XP Pro.

My computer name is MITCH1.Mitch1

I might be using "localhost" is the TCP/IP name, but I am not sure how I put
files in that directory, (or for that
matter in my computer name directory). I have two hard disks c: and f:.
THanks anyone

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:uC******** ******@tk2msftn gp13.phx.gbl...
1. Do you have IIS installed ?
You need to have installed IIS in your computer
to be able to display ASP.NET pages in your browser.

You need to have, at least, Windows 2000 or Windows XP Pro
to be able to run ASP.NET.

Which operating system are you using ?

2. How are you calling the pages ?

If you have already installed IIS, you must use a virtual address
to display an ASP.NET page.

i.e., you cannot run ASP.NET from a file system address like :
drive:\Inetpub\ wwwroot\somepag e.aspx

You must use :

http://NameofYourComputer/somepage.aspx
or
http://localhost/somepage.aspx
or
http://127.0.0.1/somepage.aspx
or
http://some.IP.address/somepage.aspx

All of those addresses will display
somepage.aspx if it is located in drive:\Inetpub\ wwwroot.

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
<mm*******@usfa mily.net> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I am haveing trouble with displaying asp.net pages on my internet
explorer.

I just want to be able to run on my own computer not the internet.

Internet explore just shows my the code.

At First netscape seemed to be a better alternative, but my Web Matrix in
design mode showed the buttions correctly, but the netscape wouldn't.

I have SAMS ASP.NET UNLEASHED by Stephan Walther and his buttons wouldn't
show up in netscape.


Apr 1 '06 #6
<mm*******@usfa mily.net> wrote in message
news:%2******** *******@TK2MSFT NGP14.phx.gbl.. .
I have widows XP Personal.
There's no such operating system... Do you mean Windows XP Home Edition or
Windows XP Professional Edition
I don't know what the web server means.


Er, it's the application (for want of a better term) which processes the
ASP.NET pages and outputs HTML etc to the client...
Apr 3 '06 #7
I tried to repair my IIS Mappings, but I found two versions of ASP:
v1.0.3705 adn v1.1.4322

I ran it in v1.14322, but it wouldn't work in v1.0.3705.

Then I tried to use www/localhost/somepage.aspx but it either displayed
nothing or it said "cannot find server"

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:ey******** ******@TK2MSFTN GP09.phx.gbl...
You need to repair your IIS mappings.

Here are the details:
http://SteveOrr.net/faq/3in1.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
<mm*******@usfa mily.net> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I am haveing trouble with displaying asp.net pages on my internet
explorer.

I just want to be able to run on my own computer not the internet.

Internet explore just shows my the code.

At First netscape seemed to be a better alternative, but my Web Matrix in
design mode showed
the buttions correctly, but the netscape wouldn't.

I have SAMS ASP.NET UNLEASHED by Stephan Walther and his buttons wouldn't
show up in netscape.


Apr 4 '06 #8
How do I specifiy the "drive" argument?

Also I having problems configuring sql server for the tutorial.

Thanks.

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:uC******** ******@tk2msftn gp13.phx.gbl...
1. Do you have IIS installed ?
You need to have installed IIS in your computer
to be able to display ASP.NET pages in your browser.

You need to have, at least, Windows 2000 or Windows XP Pro
to be able to run ASP.NET.

Which operating system are you using ?

2. How are you calling the pages ?

If you have already installed IIS, you must use a virtual address
to display an ASP.NET page.

i.e., you cannot run ASP.NET from a file system address like :
drive:\Inetpub\ wwwroot\somepag e.aspx

You must use :

http://NameofYourComputer/somepage.aspx
or
http://localhost/somepage.aspx
or
http://127.0.0.1/somepage.aspx
or
http://some.IP.address/somepage.aspx

All of those addresses will display
somepage.aspx if it is located in drive:\Inetpub\ wwwroot.

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
<mm*******@usfa mily.net> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I am haveing trouble with displaying asp.net pages on my internet
explorer.

I just want to be able to run on my own computer not the internet.

Internet explore just shows my the code.

At First netscape seemed to be a better alternative, but my Web Matrix in
design mode showed the buttions correctly, but the netscape wouldn't.

I have SAMS ASP.NET UNLEASHED by Stephan Walther and his buttons wouldn't
show up in netscape.


Apr 16 '06 #9
SUCCSES! My webex tool will run a couple of asp just by running view-> start
in my webex tool that came with my book!

It runs as localhost/<filename>!

Thanks!

<mm*******@usfa mily.net> wrote in message
news:eR******** ********@TK2MSF TNGP14.phx.gbl. ..
I tried to repair my IIS Mappings, but I found two versions of ASP:
v1.0.3705 adn v1.1.4322

I ran it in v1.14322, but it wouldn't work in v1.0.3705.

Then I tried to use www/localhost/somepage.aspx but it either displayed
nothing or it said "cannot find server"

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:ey******** ******@TK2MSFTN GP09.phx.gbl...
You need to repair your IIS mappings.

Here are the details:
http://SteveOrr.net/faq/3in1.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
<mm*******@usfa mily.net> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I am haveing trouble with displaying asp.net pages on my internet
explorer.

I just want to be able to run on my own computer not the internet.

Internet explore just shows my the code.

At First netscape seemed to be a better alternative, but my Web Matrix
in design mode showed
the buttions correctly, but the netscape wouldn't.

I have SAMS ASP.NET UNLEASHED by Stephan Walther and his buttons
wouldn't show up in netscape.



Apr 19 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
10340
by: skura | last post by:
I am trying to understand how the data in sql server is stored and also regarding fill factor and page splitting. 1) My first question what is the difference between Index pages and Data pages. and how are they different for clustered and non clustered indexes and heap tables. 2) What is the relation between index and data pages.
12
1684
by: Sunny | last post by:
Hi, I need to download some web pages from a web server (most of them are not static html, but .asp pages). The content (I.e. the pure html) in the pages are not changed very often, so I'll looking for a way not to download that pages, which have not been changed since last download. Can someone point me an starting point in that direction? Any examples, etc. Thanks
21
2934
by: matvdl | last post by:
I have a system that was originally developed in asp - the pages are saved in SQL (there are over 10,000 pages) and saved to a temp directory in the server when requested by a client. I have updated this system and changed the pages that are saved to the server as aspx - everything works fine and pages can be served - but Its not impossible for a single client to request 100 plus pages in one session - as each page is requested it is...
5
2417
by: Michael Herman \(Parallelspace\) | last post by:
1. What are some compelling solutions for using Master/Content pages with Web Pages? 2. If a content area has a web part zone with web parts, what is the user experience like when "editting" the web part page? Does it take place at the page level? ...or the content area level? 3. Where is the Web Part Manager instantiated? ...in the Master Page? ....Content Page? ...elsewhere?
0
8438
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8348
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8863
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8636
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7376
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6187
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5660
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
2004
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1761
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.