Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_beginners thread: Sample


Message #1 by Alex Puritche <Alex@w...> on Fri, 3 Jan 2003 18:24:16 +0200
Hi, folks!

Can somebody help me a bit with the following problem. I'm totally new
to  ASP.NET  been  very  proficient  in ColdFusion. what I need... Can
somebody  send  me  url to complete tutorial of simple database driven
application.  I  want to learn by example, how to create one html form
for  "add"  and  "update",  how  to retrieve and to show data from the
database.  It  can very simple, just adding value of single text field
to  single database table, for example, creating a list of book titles
of  my  library. I know how to do it in a matter of minutes in CF, but
can't  dig  in how to do it ASP.NET. It wiould be fine if that example
will be made using C# and OO approach (not plain scripting in the "old
ASP" style - I understand how to do it in that way)

  

-- 
 Regards,
 Alex                          mailto:Alex@w...

 May all your Internet Dreams come true!
 http://www.intellinetinteractive.com/

Message #2 by "Ben Densmore" <ben_densmore@e...> on Fri, 3 Jan 2003 11:16:13 -0500 (Eastern Standard Time)
--------------Boundary-00=_1VB56RO0000000000000
Content-Type: Text/Plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hey Alex I'm a CF'er also. Not changing to .NET completely but want to
pursue other technologies. THe best place I found for that stuff is www.a
sp
net and www.mastercsharp.com is a good one as well. If you follow the
tutorials on www.asp.net you should get a quick grasp of how to Bind to
databases and use the different controls to display the data, it's pretty
neat and powerful stuff. Not quite as easy as CF but it's not too difficu
lt.=0D
=0D
Ben=0D
 =0D
-------Original Message-------=0D
 =0D
From: aspx_beginners=0D
Date: Friday, January 03, 2003 11:12:57 AM=0D
To: aspx_beginners=0D
Subject: [aspx_beginners] Sample=0D
 =0D
Hi, folks!=0D
=0D
Can somebody help me a bit with the following problem. I'm totally new=0D
to ASP.NET been very proficient in ColdFusion. what I need... Can=0D
somebody send me url to complete tutorial of simple database driven=0D
application. I want to learn by example, how to create one html form=0D
for "add" and "update", how to retrieve and to show data from the=0D
database. It can very simple, just adding value of single text field=0D
to single database table, for example, creating a list of book titles=0D
of my library. I know how to do it in a matter of minutes in CF, but=0D
can't dig in how to do it ASP.NET. It wiould be fine if that example=0D
will be made using C# and OO approach (not plain scripting in the "old=0D
ASP" style - I understand how to do it in that way)=0D
=0D
=0D
=0D
-- =0D
Regards,=0D
Alex mailto:Alex@w...=0D
=0D
May all your Internet Dreams come true!=0D
http://www.intellinetinteractive.com/=0D
=0D
=0D
---=0D
Change your mail options at http://p2p.wrox.com/manager.asp or =0D
to unsubscribe send a blank email to leave-aspx_beginners-1638673Q@p...
ox
com.=0D
=2E


Message #3 by Alex Puritche <Alex@w...> on Sat, 4 Jan 2003 03:12:13 +0200
Ben,

    There is great tutorial. But... It shows how to write ASP.NET code
    in "old fashioned" (very similar to ColdFusion) way. That makes me
    a  bit  upset... If you know what FuseBox is, you know coolness of
    separating functionality form representation and you'll understand
    my craving of that knowledge in the ASP.NET field. Anyway I didn't
    finish  going through tutorial in ASP.NET web site, so I have what
    to do at the moment... :-)

    Thank you for advice!!!
    

Friday, January 3, 2003, 6:16:13 PM, you wrote:

Ben> Hey Alex I'm a CF'er also. Not changing to .NET completely but want to
Ben> pursue other technologies. THe best place I found for that stuff is www.asp
Ben> net and www.mastercsharp.com is a good one as well. If you follow the
Ben> tutorials on www.asp.net you should get a quick grasp of how to Bind to
Ben> databases and use the different controls to display the data, it's pretty
Ben> neat and powerful stuff. Not quite as easy as CF but it's not too difficult.



Ben> Ben

 

Ben> -------Original Message-------

 

Ben> From: aspx_beginners

Ben> Date: Friday, January 03, 2003 11:12:57 AM

Ben> To: aspx_beginners

Ben> Subject: [aspx_beginners] Sample

 

Ben> Hi, folks!



Ben> Can somebody help me a bit with the following problem. I'm totally new

Ben> to ASP.NET been very proficient in ColdFusion. what I need... Can

Ben> somebody send me url to complete tutorial of simple database driven

Ben> application. I want to learn by example, how to create one html form

Ben> for "add" and "update", how to retrieve and to show data from the

Ben> database. It can very simple, just adding value of single text field

Ben> to single database table, for example, creating a list of book titles

Ben> of my library. I know how to do it in a matter of minutes in CF, but

Ben> can't dig in how to do it ASP.NET. It wiould be fine if that example

Ben> will be made using C# and OO approach (not plain scripting in the "old

Ben> ASP" style - I understand how to do it in that way)









-- 
 Regards,
 Alex                            mailto:Alex@w...

 May all your Internet Dreams come true!
 http://www.intellinetinteractive.com/

Message #4 by "Ben Densmore" <ben_densmore@e...> on Mon, 6 Jan 2003 13:56:08 -0500 (Eastern Standard Time)
--------------Boundary-00=_K93BCJD0000000000000
Content-Type: Text/Plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Alex,=0D
 take a look at using the code behind options on mastercsharp.com. Or do 
a
search on google for using code behind. That is how you can have all your
functionality in one file and your design in another. I think if you look
 at
the ibuyspy portal that they have somewhere on asp.net or on ms site you 
can
see how they seperate all the code into different pieces and use an index
aspx file to display everything.=0D
=0D
Ben=0D
 =0D
-------Original Message-------=0D
 =0D
From: aspx_beginners=0D
Date: Friday, January 03, 2003 08:00:25 PM=0D
To: aspx_beginners=0D
Subject: [aspx_beginners] Re: Sample=0D
 =0D
Ben,=0D
=0D
There is great tutorial. But... It shows how to write ASP.NET code=0D
in "old fashioned" (very similar to ColdFusion) way. That makes me=0D
a bit upset... If you know what FuseBox is, you know coolness of=0D
separating functionality form representation and you'll understand=0D
my craving of that knowledge in the ASP.NET field. Anyway I didn't=0D
finish going through tutorial in ASP.NET web site, so I have what=0D
to do at the moment... :-)=0D
=0D
Thank you for advice!!!=0D
=0D
=0D
Friday, January 3, 2003, 6:16:13 PM, you wrote:=0D
=0D
Ben> Hey Alex I'm a CF'er also. Not changing to .NET completely but want 
to=0D
Ben> pursue other technologies. THe best place I found for that stuff is 
www
asp=0D
Ben> net and www.mastercsharp.com is a good one as well. If you follow th
e=0D
Ben> tutorials on www.asp.net you should get a quick grasp of how to Bind
 to=0D
Ben> databases and use the different controls to display the data, it's
pretty=0D
Ben> neat and powerful stuff. Not quite as easy as CF but it's not too
difficult.=0D
=0D
=0D
=0D
Ben> Ben=0D
=0D
=0D
=0D
Ben> -------Original Message-------=0D
=0D
=0D
=0D
Ben> From: aspx_beginners=0D
=0D
Ben> Date: Friday, January 03, 2003 11:12:57 AM=0D
=0D
Ben> To: aspx_beginners=0D
=0D
Ben> Subject: [aspx_beginners] Sample=0D
=0D
=0D
=0D
Ben> Hi, folks!=0D
=0D
=0D
=0D
Ben> Can somebody help me a bit with the following problem. I'm totally n
ew=0D
=0D
Ben> to ASP.NET been very proficient in ColdFusion. what I need... Can=0D
=0D
Ben> somebody send me url to complete tutorial of simple database driven=0D
=0D
Ben> application. I want to learn by example, how to create one html form
=0D
=0D
Ben> for "add" and "update", how to retrieve and to show data from the=0D
=0D
Ben> database. It can very simple, just adding value of single text field
=0D
=0D
Ben> to single database table, for example, creating a list of book title
s=0D
=0D
Ben> of my library. I know how to do it in a matter of minutes in CF, but
=0D
=0D
Ben> can't dig in how to do it ASP.NET. It wiould be fine if that example
=0D
=0D
Ben> will be made using C# and OO approach (not plain scripting in the "o
ld=0D
=0D
Ben> ASP" style - I understand how to do it in that way)=0D
=0D
=0D
=0D
=0D
=0D
=0D
=0D
=0D
=0D
-- =0D
Regards,=0D
Alex mailto:Alex@w...=0D
=0D
May all your Internet Dreams come true!=0D
http://www.intellinetinteractive.com/=0D
=0D
=0D
---=0D
Change your mail options at http://p2p.wrox.com/manager.asp or =0D
to unsubscribe send a blank email to leave-aspx_beginners-1638673Q@p...
ox
com.=0D
=2E


Message #5 by "Alex Smotritsky" <alex.smotritsky@v...> on Mon, 6 Jan 2003 14:12:27 -0500
microsoft's exam prep book, developing web applications with microsoft
visual basic .net and microsoft visual c# .net shows how to do it right,
with separation of presentation and logic.
 
Basically, you drag a table from your db on to your web form to get a
connection and adapter object. Then you drag over other elements you
want from the tool box like datagrids and stuff. Once you dragged the
table over to get the connection, a .cs file with a onpageload procedure
in it is generated automatically, you put all your logic in the .cs file
(for a c # proj.) and thus your logic is in the .cs file and your html
presentation is in the aspx form.
 
 -----Original Message-----
From: Ben Densmore [mailto:ben_densmore@e...] 
Sent: Monday, January 06, 2003 1:56 PM
To: aspx_beginners
Subject: [aspx_beginners] Re: Sample




Alex,
 take a look at using the code behind options on mastercsharp.com. Or do
a search on google for using code behind. That is how you can have all
your functionality in one file and your design in another. I think if
you look at the ibuyspy portal that they have somewhere on asp.net or on
ms site you can see how they seperate all the code into different pieces
and use an index.aspx file to display everything.
 
Ben
 
-------Original Message-------
 
From: aspx_beginners <mailto:aspx_beginners@p...> 
Date: Friday, January 03, 2003 08:00:25 PM
To: aspx_beginners <mailto:aspx_beginners@p...> 
Subject: [aspx_beginners] Re: Sample
 
Ben,

There is great tutorial. But... It shows how to write ASP.NET code
in "old fashioned" (very similar to ColdFusion) way. That makes me
a bit upset... If you know what FuseBox is, you know coolness of
separating functionality form representation and you'll understand
my craving of that knowledge in the ASP.NET field. Anyway I didn't
finish going through tutorial in ASP.NET web site, so I have what
to do at the moment... :-)

Thank you for advice!!!


Friday, January 3, 2003, 6:16:13 PM, you wrote:

Ben> Hey Alex I'm a CF'er also. Not changing to .NET completely but want
to
Ben> pursue other technologies. THe best place I found for that stuff is
www.asp
Ben> net and www.mastercsharp.com is a good one as well. If you follow
the
Ben> tutorials on www.asp.net you should get a quick grasp of how to
Bind to
Ben> databases and use the different controls to display the data, it's
pretty
Ben> neat and powerful stuff. Not quite as easy as CF but it's not too
difficult.



Ben> Ben



Ben> -------Original Message-------



Ben> From: aspx_beginners

Ben> Date: Friday, January 03, 2003 11:12:57 AM

Ben> To: aspx_beginners

Ben> Subject: [aspx_beginners] Sample



Ben> Hi, folks!



Ben> Can somebody help me a bit with the following problem. I'm totally
new

Ben> to ASP.NET been very proficient in ColdFusion. what I need... Can

Ben> somebody send me url to complete tutorial of simple database driven

Ben> application. I want to learn by example, how to create one html
form

Ben> for "add" and "update", how to retrieve and to show data from the

Ben> database. It can very simple, just adding value of single text
field

Ben> to single database table, for example, creating a list of book
titles

Ben> of my library. I know how to do it in a matter of minutes in CF,
but

Ben> can't dig in how to do it ASP.NET. It wiould be fine if that
example

Ben> will be made using C# and OO approach (not plain scripting in the
"old

Ben> ASP" style - I understand how to do it in that way)









-- 
Regards,
Alex mailto:Alex@w...

May all your Internet Dreams come true!
http://www.intellinetinteractive.com/


%%email.unsub%% <mailto:%%email.unsub%%> .
. 

			


Message #6 by "David V. deMoya" <ddemoya@s...> on Mon, 6 Jan 2003 14:51:22 -0500
make sure you have IIS installed before you install the .NET Framework.
David

-----Original Message-----
From: Alex Smotritsky [mailto:alex.smotritsky@v...]
Sent: Monday, January 06, 2003 2:12 PM
To: aspx_beginners
Subject: [aspx_beginners] Re: Sample


microsoft's exam prep book, developing web applications with microsoft
visual basic .net and microsoft visual c# .net shows how to do it right,
with separation of presentation and logic.

Basically, you drag a table from your db on to your web form to get a
connection and adapter object. Then you drag over other elements you
want from the tool box like datagrids and stuff. Once you dragged the
table over to get the connection, a .cs file with a onpageload procedure
in it is generated automatically, you put all your logic in the .cs file
(for a c # proj.) and thus your logic is in the .cs file and your html
presentation is in the aspx form.

 -----Original Message-----
From: Ben Densmore [mailto:ben_densmore@e...]
Sent: Monday, January 06, 2003 1:56 PM
To: aspx_beginners
Subject: [aspx_beginners] Re: Sample




Alex,
 take a look at using the code behind options on mastercsharp.com. Or do
a search on google for using code behind. That is how you can have all
your functionality in one file and your design in another. I think if
you look at the ibuyspy portal that they have somewhere on asp.net or on
ms site you can see how they seperate all the code into different pieces
and use an index.aspx file to display everything.

Ben

-------Original Message-------

From: aspx_beginners <mailto:aspx_beginners@p...>
Date: Friday, January 03, 2003 08:00:25 PM
To: aspx_beginners <mailto:aspx_beginners@p...>
Subject: [aspx_beginners] Re: Sample

Ben,

There is great tutorial. But... It shows how to write ASP.NET code
in "old fashioned" (very similar to ColdFusion) way. That makes me
a bit upset... If you know what FuseBox is, you know coolness of
separating functionality form representation and you'll understand
my craving of that knowledge in the ASP.NET field. Anyway I didn't
finish going through tutorial in ASP.NET web site, so I have what
to do at the moment... :-)

Thank you for advice!!!


Friday, January 3, 2003, 6:16:13 PM, you wrote:

Ben> Hey Alex I'm a CF'er also. Not changing to .NET completely but want
to
Ben> pursue other technologies. THe best place I found for that stuff is
www.asp
Ben> net and www.mastercsharp.com is a good one as well. If you follow
the
Ben> tutorials on www.asp.net you should get a quick grasp of how to
Bind to
Ben> databases and use the different controls to display the data, it's
pretty
Ben> neat and powerful stuff. Not quite as easy as CF but it's not too
difficult.



Ben> Ben



Ben> -------Original Message-------



Ben> From: aspx_beginners

Ben> Date: Friday, January 03, 2003 11:12:57 AM

Ben> To: aspx_beginners

Ben> Subject: [aspx_beginners] Sample



Ben> Hi, folks!



Ben> Can somebody help me a bit with the following problem. I'm totally
new

Ben> to ASP.NET been very proficient in ColdFusion. what I need... Can

Ben> somebody send me url to complete tutorial of simple database driven

Ben> application. I want to learn by example, how to create one html
form

Ben> for "add" and "update", how to retrieve and to show data from the

Ben> database. It can very simple, just adding value of single text
field

Ben> to single database table, for example, creating a list of book
titles

Ben> of my library. I know how to do it in a matter of minutes in CF,
but

Ben> can't dig in how to do it ASP.NET. It wiould be fine if that
example

Ben> will be made using C# and OO approach (not plain scripting in the
"old

Ben> ASP" style - I understand how to do it in that way)









--
Regards,
Alex mailto:Alex@w...

May all your Internet Dreams come true!
http://www.intellinetinteractive.com/


%%email.unsub%% <mailto:%%email.unsub%%> .
.







Message #7 by "Alex Smotritsky" <alex.smotritsky@v...> on Mon, 6 Jan 2003 14:55:50 -0500
I think actually the .cs file is there with the onpageload proc right
after you create the proj.


-----Original Message-----
From: Alex Smotritsky [mailto:alex.smotritsky@v...] 
Sent: Monday, January 06, 2003 2:12 PM
To: aspx_beginners
Subject: [aspx_beginners] Re: Sample


microsoft's exam prep book, developing web applications with microsoft
visual basic .net and microsoft visual c# .net shows how to do it right,
with separation of presentation and logic.
 
Basically, you drag a table from your db on to your web form to get a
connection and adapter object. Then you drag over other elements you
want from the tool box like datagrids and stuff. Once you dragged the
table over to get the connection, a .cs file with a onpageload procedure
in it is generated automatically, you put all your logic in the .cs file
(for a c # proj.) and thus your logic is in the .cs file and your html
presentation is in the aspx form.
 
 -----Original Message-----
From: Ben Densmore [mailto:ben_densmore@e...] 
Sent: Monday, January 06, 2003 1:56 PM
To: aspx_beginners
Subject: [aspx_beginners] Re: Sample




Alex,
 take a look at using the code behind options on mastercsharp.com. Or do
a search on google for using code behind. That is how you can have all
your functionality in one file and your design in another. I think if
you look at the ibuyspy portal that they have somewhere on asp.net or on
ms site you can see how they seperate all the code into different pieces
and use an index.aspx file to display everything.
 
Ben
 
-------Original Message-------
 
From: aspx_beginners <mailto:aspx_beginners@p...> 
Date: Friday, January 03, 2003 08:00:25 PM
To: aspx_beginners <mailto:aspx_beginners@p...> 
Subject: [aspx_beginners] Re: Sample
 
Ben,

There is great tutorial. But... It shows how to write ASP.NET code in
"old fashioned" (very similar to ColdFusion) way. That makes me a bit
upset... If you know what FuseBox is, you know coolness of separating
functionality form representation and you'll understand my craving of
that knowledge in the ASP.NET field. Anyway I didn't finish going
through tutorial in ASP.NET web site, so I have what to do at the
moment... :-)

Thank you for advice!!!


Friday, January 3, 2003, 6:16:13 PM, you wrote:

Ben> Hey Alex I'm a CF'er also. Not changing to .NET completely but want
to
Ben> pursue other technologies. THe best place I found for that stuff is
www.asp
Ben> net and www.mastercsharp.com is a good one as well. If you follow
the
Ben> tutorials on www.asp.net you should get a quick grasp of how to
Bind to
Ben> databases and use the different controls to display the data, it's
pretty
Ben> neat and powerful stuff. Not quite as easy as CF but it's not too
difficult.



Ben> Ben



Ben> -------Original Message-------



Ben> From: aspx_beginners

Ben> Date: Friday, January 03, 2003 11:12:57 AM

Ben> To: aspx_beginners

Ben> Subject: [aspx_beginners] Sample



Ben> Hi, folks!



Ben> Can somebody help me a bit with the following problem. I'm totally
new

Ben> to ASP.NET been very proficient in ColdFusion. what I need... Can

Ben> somebody send me url to complete tutorial of simple database driven

Ben> application. I want to learn by example, how to create one html
form

Ben> for "add" and "update", how to retrieve and to show data from the

Ben> database. It can very simple, just adding value of single text
field

Ben> to single database table, for example, creating a list of book
titles

Ben> of my library. I know how to do it in a matter of minutes in CF,
but

Ben> can't dig in how to do it ASP.NET. It wiould be fine if that
example

Ben> will be made using C# and OO approach (not plain scripting in the
"old

Ben> ASP" style - I understand how to do it in that way)









-- 
Regards,
Alex mailto:Alex@w...

May all your Internet Dreams come true!
http://www.intellinetinteractive.com/


%%email.unsub%% <mailto:%%email.unsub%%> .
. 

			





  Return to Index