PC Review


Reply
Thread Tools Rate Thread

asp.net simple question

 
 
abcd
Guest
Posts: n/a
 
      15th Aug 2005
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



 
Reply With Quote
 
 
 
 
Curt_C [MVP]
Guest
Posts: n/a
 
      15th Aug 2005
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
 
Reply With Quote
 
Curt_C [MVP]
Guest
Posts: n/a
 
      15th Aug 2005
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
 
Reply With Quote
 
abcd
Guest
Posts: n/a
 
      15th Aug 2005
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



 
Reply With Quote
 
Kevin Spencer
Guest
Posts: n/a
 
      16th Aug 2005
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" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> 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

>
>



 
Reply With Quote
 
Curt_C [MVP]
Guest
Posts: n/a
 
      16th Aug 2005
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
 
Reply With Quote
 
abcd
Guest
Posts: n/a
 
      16th Aug 2005
Thanks Curt that fixed the issue.

Cheers !

"Curt_C [MVP]" <software_at_darkfalz.com> wrote in message
news:%(E-Mail Removed)...
> 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



 
Reply With Quote
 
abcd
Guest
Posts: n/a
 
      16th Aug 2005
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" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> 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

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
simple simple question about command-prompt window riprap Windows XP General 9 6th Nov 2008 02:55 PM
IF formula-simple question; simple operator Rich D Microsoft Excel Misc 4 6th Dec 2007 03:36 PM
A simple question requiring a simple answer Pedros Microsoft Excel Discussion 3 18th Jul 2006 11:40 AM
Simple Simple Excel usage question =?Utf-8?B?Qm9va2VyVw==?= Microsoft Excel Misc 1 23rd Jun 2005 10:06 PM
Simple Question and hopefully a simple answer re- spam News Microsoft Outlook 9 31st May 2005 03:07 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:33 PM.