Juan said:
MS published a pretty good tutorial in its ASP.NET QuickStart :
http://asp.net/quickstart/aspnet/Default.aspx
Make sure you select the C# language in the dropdown at the top right.
Thanx a lot for that link - gave me a good start for asp.net - exactly
what I was looking for.
I am a reasonably experienced programmer but have
done very little web programming, so I am just trying
to get going here - need some pointers as to what
direction to go & what stuff to learn.
There is an existing server program and a native
client. The native client is an Win32 exe. I have to
add a web based client for the server - I cannot
make changes to the server. This is not a live
project - this is just something I am doing to get
a handle on building web based programs.
So this is what I think should be my general high
level design. - Have a middle tier program which
communicates to the server & generates
DHTML/Ajax - this generated DHTML will be
the web based client. (Ajax because I am looking
to learn some Ajax
)
Does this sound right?
Is it possible to write a C# program which
communicates with the server & also generates
the client DHTML? Or will I need the middle
layer to be split into 2 programs - one which communicates
with the server & another which talks to the first one &
generates the DHTML?
What kind of C# program do I need?
"ASP.NET web application"
"ASP.NET web service"
"Empty Web Project"
(these the Visual studio choices?")
Do I need to use ISAPI? How, where?
Sorry if my questions sound stupid. I am very new at
this & I am not finding any information about how all
the different components come together.