473,385 Members | 1,647 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

asp.net simple question

I am trying to set up client machine and investigatging which .net
components are missing to run aspx page.

I have a simple aspx page which just has "hello world" printed....

When I request that page like http://machinename/dir1/hellp.aspx

instead of running that page it starts downloding ...whats missing here
....why the aspx engine not running the page....

any clues

Nov 19 '05 #1
7 2254
abcd wrote:
I am trying to set up client machine and investigatging which .net
components are missing to run aspx page.

I have a simple aspx page which just has "hello world" printed....

When I request that page like http://machinename/dir1/hellp.aspx

instead of running that page it starts downloding ...whats missing here
...why the aspx engine not running the page....

any clues


IIS
--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Nov 19 '05 #2
abcd wrote:
I am trying to set up client machine and investigatging which .net
components are missing to run aspx page.

I have a simple aspx page which just has "hello world" printed....

When I request that page like http://machinename/dir1/hellp.aspx

instead of running that page it starts downloding ...whats missing here
...why the aspx engine not running the page....

any clues


Or the .NET framework

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Nov 19 '05 #3
its W2K with SP4 machine and it has IIS and .NET framework 1.1

thanks

Curt_C [MVP] wrote:
abcd wrote:
I am trying to set up client machine and investigatging which .net
components are missing to run aspx page.

I have a simple aspx page which just has "hello world" printed....

When I request that page like http://machinename/dir1/hellp.aspx

instead of running that page it starts downloding ...whats missing
here ...why the aspx engine not running the page....

any clues


Or the .NET framework

Nov 19 '05 #4
They were telling you what could be missing. I'll see if I can elaborate a
little, but you've got a lot of work ahead of you.

Your first mistake was in thinking that ANYTHING about ASP.Net is "simple."
Your title says "asp.net simple question." Well, if it's so simple, why are
you here? In your message you stated "I have a simple aspx page..." Again,
there is nothing simple about ASP.Net. A console application that prints
"hello world" to the screen is relatively simple. Everything happens in a
nice little sandbox on your local machine. ASP.Net is an ISAPI (Internet
Server Application Programming Interface) that resides on IIS, and handles
HTTP requests over a TCP/IP network. So, you're already talking about
something complex there. An ASP.Net application uses the Microsoft .Net
Framework, which is multi-threaded, object-oriented, and network-oriented.
So, add more complexity to the issue. Notice that I havent' even talked
about an ASP.Net Page yet, much less one that prints "hello world" to an
HTML document returned to a browser via an HTTP Request. HTTP is a stateless
protocol, which complicates things MUCH further.

To use ASP.Net, you first have to understand something about the environment
in which it runs. Then you have to understand something about the platform
it runs ON. Then you must understand something about the ASP.Net programming
model, including the object-oriented aspects, maintaining state, and what a
System.Web.UI.Control is, and how it behaves.

Here's a good place to start:
http://msdn.microsoft.com/library/en...asp?frame=true

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Expect the unaccepted.

"abcd" <ab**@abcd.com> wrote in message
news:ui**************@TK2MSFTNGP12.phx.gbl...
its W2K with SP4 machine and it has IIS and .NET framework 1.1

thanks

Curt_C [MVP] wrote:
abcd wrote:
I am trying to set up client machine and investigatging which .net
components are missing to run aspx page.

I have a simple aspx page which just has "hello world" printed....

When I request that page like http://machinename/dir1/hellp.aspx

instead of running that page it starts downloding ...whats missing
here ...why the aspx engine not running the page....

any clues


Or the .NET framework


Nov 19 '05 #5
abcd wrote:
its W2K with SP4 machine and it has IIS and .NET framework 1.1


try running the aspreg_iis -C and -I options

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Nov 19 '05 #6
Thanks Curt that fixed the issue.

Cheers !

"Curt_C [MVP]" <software_at_darkfalz.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
abcd wrote:
its W2K with SP4 machine and it has IIS and .NET framework 1.1


try running the aspreg_iis -C and -I options

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

Nov 19 '05 #7
Kevin I understood your post. Curt's response was more helpful and that
solved my problem than your reply.

I know asp.net is complex, but I am talking here about a simple page which
just has 2 words "hello world" its not using complex technology like COM
components, other framework calls, other stuffs like session, cookies,
session from asp to asp.net, viewstate etc...etc.....

I am an application developer who cares about my application....Microsoft is
there to take care of complex things for developers like me and I just need
to concentrate on my application....

My heading was pointed to experts acording to them its a simple issue.

anyway what ever you have said is true and I appriciate spending your time
for me.

cheers !
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
They were telling you what could be missing. I'll see if I can elaborate a
little, but you've got a lot of work ahead of you.

Your first mistake was in thinking that ANYTHING about ASP.Net is
"simple." Your title says "asp.net simple question." Well, if it's so
simple, why are you here? In your message you stated "I have a simple aspx
page..." Again, there is nothing simple about ASP.Net. A console
application that prints "hello world" to the screen is relatively simple.
Everything happens in a nice little sandbox on your local machine. ASP.Net
is an ISAPI (Internet Server Application Programming Interface) that
resides on IIS, and handles HTTP requests over a TCP/IP network. So,
you're already talking about something complex there. An ASP.Net
application uses the Microsoft .Net Framework, which is multi-threaded,
object-oriented, and network-oriented. So, add more complexity to the
issue. Notice that I havent' even talked about an ASP.Net Page yet, much
less one that prints "hello world" to an HTML document returned to a
browser via an HTTP Request. HTTP is a stateless protocol, which
complicates things MUCH further.

To use ASP.Net, you first have to understand something about the
environment in which it runs. Then you have to understand something about
the platform it runs ON. Then you must understand something about the
ASP.Net programming model, including the object-oriented aspects,
maintaining state, and what a System.Web.UI.Control is, and how it
behaves.

Here's a good place to start:
http://msdn.microsoft.com/library/en...asp?frame=true

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
Expect the unaccepted.

"abcd" <ab**@abcd.com> wrote in message
news:ui**************@TK2MSFTNGP12.phx.gbl...
its W2K with SP4 machine and it has IIS and .NET framework 1.1

thanks

Curt_C [MVP] wrote:
abcd wrote:
I am trying to set up client machine and investigatging which .net
components are missing to run aspx page.

I have a simple aspx page which just has "hello world" printed....

When I request that page like http://machinename/dir1/hellp.aspx

instead of running that page it starts downloding ...whats missing
here ...why the aspx engine not running the page....

any clues


Or the .NET framework



Nov 19 '05 #8

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

Similar topics

3
by: Patchwork | last post by:
Hi Everyone, Please take a look at the following (simple and fun) program: //////////////////////////////////////////////////////////////////////////// ///////////// // Monster Munch, example...
1
by: Proteus | last post by:
Any help appreciated on a small perl project I need to write for educator/teaching purposes. I have not programmed perl for some time, need to get up to speed, maybe some kind souls hrere will help...
2
by: Raskolnikow | last post by:
Hi! I have a very simple problem with itoa() or the localtime(...). Sorry, if it is too simple, I don't have a proper example. Please have a look at the comments. struct tm *systime; time_t...
3
by: Peter | last post by:
Hello Thanks for reviewing my question. I would like to know how can I programmatically select a node Thanks in Advanc Peter
4
by: dba_222 | last post by:
Dear Experts, Ok, I hate to ask such a seemingly dumb question, but I've already spent far too much time on this. More that I would care to admit. In Sql server, how do I simply change a...
14
by: Giancarlo Berenz | last post by:
Hi: Recently i write this code: class Simple { private: int value; public: int GiveMeARandom(void);
30
by: galiorenye | last post by:
Hi, Given this code: A** ppA = new A*; A *pA = NULL; for(int i = 0; i < 10; ++i) { pA = ppA; //do something with pA
10
by: Phillip Taylor | last post by:
Hi guys, I'm looking to develop a simple web service in VB.NET but I'm having some trivial issues. In Visual Studio I create a web services project and change the asmx.vb file to this: Imports...
17
by: Chris M. Thomasson | last post by:
I use the following technique in all of my C++ projects; here is the example code with error checking omitted for brevity: _________________________________________________________________ /*...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.