Re: start ASP net from very scratch
- From: "Jeff" <Jeff@xxxxxxxxxx>
- Date: Sat, 17 Dec 2005 19:45:37 -0800
Re:
<< Browser--> Server <--> MywebApp -->Browser, right? >>
Yes - more or less. The big point to understand is that ASP.NET Web
applications do not run inside of browsers. They run on Web servers...
Browser sends a request to the server (for myPage.aspx)
IIS is running on the Web server (it IS the web server) and it receives the
request.
IIS sees that the request is for an .aspx file - and so hands off the
request to ASP.NET for further processing.
ASP.NET then processes the request (any code-behind logic, etc).
ASP.NET ultimately returns plain old HTML back to the browser.
At the end of the day, all the browser is doing is (1) sending HTTP requests
to the server, and (2) receiving HTML. That's basically it. IF there is any
client-side programming going on, it will usually be client-side JavaScript.
Even when it runs, there is no live/ongoing connection with the Web server
and/or ASP.NET Web application.
This link explains it better than I:
http://aspnet.4guysfromrolla.com/articles/011404-1.aspx
Now, about your SQL Server problems.... sorry , I don't know. You might want
to post a new question to specifically address that.
-HTH
<pamelafluente@xxxxxxxxx> wrote in message
news:1134844139.090291.148580@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
> Dear Jeff,
>
> thank you very much for the enlighting clarification.
>
> Probably these things may seems trivial to experienced web programmers,
> but when has only done win apps, they are not at all. So the most basic
> schema you are suggesting is Browser--> Server <--> MywebApp -->
> Browser, right?
>
> Actually, I have just begun playing with the VWD. I have got through a
> few lessons of the www.asp.net tutorial, which are really nice.
>
> I already have found my first problem. In fact I found no way to make
> SQLServer2005 work. It's like the service is not seen by the
> applications (I did run the script the create the PUBS db and it worked
> fine).
> Don't know if the people at Microsoft expect the poor thing starting
> its journey in this new world with the "Express" tools be also a
> SQLServer expert. I have tried to reinstall it 2 times and at last gave
> up.
>
> Reinstalled the old SQLServer2000 Prof. which works like a charm.
>
> I am probably missing something very basic. But the point now is that
> would not like to waste
> a couple of days to find what it is. I prefer to focus on the ASP net
> for now.
>
> But if anyone know what the problem is (I am sure I am missing
> something very elementary) please let me know!
>
> -Pam
>
.
- Follow-Ups:
- Re: start ASP net from very scratch
- From: pamelafluente
- Re: start ASP net from very scratch
- References:
- start ASP net from very scratch
- From: pamelafluente
- Re: start ASP net from very scratch
- From: Jeff
- Re: start ASP net from very scratch
- From: pamelafluente
- Re: start ASP net from very scratch
- From: Jeff
- Re: start ASP net from very scratch
- From: pamelafluente
- start ASP net from very scratch
- Prev by Date: Re: Shopping cart Server Application Unavailable - random
- Next by Date: Re: breaking the model
- Previous by thread: Re: start ASP net from very scratch
- Next by thread: Re: start ASP net from very scratch
- Index(es):
Relevant Pages
|