Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Simple beginner's question

Reply
Thread Tools

Simple beginner's question

 
 
Jack
Guest
Posts: n/a
 
      02-25-2008
Hi there,

I'm a very experienced C++ developer but a relative newcomer to web
development and a raw neophyte in the ASP.NET arena. I have a very simple
scenario that hopefully someone can help me with. I have a 3rd-party HTML
form with a single (submit) button and a number of (static) hidden fields
(all values hardcoded). The form is pure HTML (no ASP or ASP.NET whatsoever)
and it simply posts its data to a 3rd-party site when the button is clicked
(i.e., the form's "action" attribute is set to the appropriate URL
accordingly). This site then reads its data from the hidden fields on the
form. I now want to re-write this form using ASP.NET but I'll add a single
dropdown list. The form should then get posted back to my own server instead
where I can now set (or dynamically create) these hidden fields based on the
users' selected dropdown value. I then want to post the form back to the
original 3rd-party site just like the original form handled it (but the
hidden fields were now filled in by my server - they're no longer
hardcoded). I can wire up the submit button's event handler in ASP.NET and
check the dropdown list but I'm not sure what code I should be calling to
dynamically create these hidden fields and then post the form to its
original 3rd-party site. Can anyone show me the basic code to get me
started. Thanks very much.


 
Reply With Quote
 
 
 
 
Nathan Sokalski
Guest
Posts: n/a
 
      02-25-2008
It sounds to me like you should find a basic book on ASP.NET before you
attempt to actually write any sites or pages. I am not attempting to insult
you by any means (before I took my first course on ASP.NET, I couldn't do
anything, but I can do most things now), but if what you are trying to do is
as simple as what it sounds like, you need to know how to do the basic
things such this before ASP.NET will be any use to you. Here is my personal
favorite for ASP.NET books, it is example-based and teaches you everything
from the pure basics to almost all features that exist in ASP.NET:

ASP.NET 2.0 Unleashed by Stephen Walther

Almost everything I know either came from this book or experience, and it
gives the code in VB.NET and C# (the C# code is only on the cd). Many people
have recommended this book to me, and it is probably the best book I ever
bought.
--
Nathan Sokalski

http://www.nathansokalski.com/

"Jack" <no_spam@_nospam.com> wrote in message
news:...
> Hi there,
>
> I'm a very experienced C++ developer but a relative newcomer to web
> development and a raw neophyte in the ASP.NET arena. I have a very simple
> scenario that hopefully someone can help me with. I have a 3rd-party HTML
> form with a single (submit) button and a number of (static) hidden fields
> (all values hardcoded). The form is pure HTML (no ASP or ASP.NET
> whatsoever) and it simply posts its data to a 3rd-party site when the
> button is clicked (i.e., the form's "action" attribute is set to the
> appropriate URL accordingly). This site then reads its data from the
> hidden fields on the form. I now want to re-write this form using ASP.NET
> but I'll add a single dropdown list. The form should then get posted back
> to my own server instead where I can now set (or dynamically create) these
> hidden fields based on the users' selected dropdown value. I then want to
> post the form back to the original 3rd-party site just like the original
> form handled it (but the hidden fields were now filled in by my server -
> they're no longer hardcoded). I can wire up the submit button's event
> handler in ASP.NET and check the dropdown list but I'm not sure what code
> I should be calling to dynamically create these hidden fields and then
> post the form to its original 3rd-party site. Can anyone show me the basic
> code to get me started. Thanks very much.
>



 
Reply With Quote
 
 
 
 
Jack
Guest
Posts: n/a
 
      02-25-2008
> It sounds to me like you should find a basic book on ASP.NET before you
> attempt to actually write any sites or pages. I am not attempting to
> insult you by any means (before I took my first course on ASP.NET, I
> couldn't do anything, but I can do most things now), but if what you are
> trying to do is as simple as what it sounds like, you need to know how to
> do the basic things such this before ASP.NET will be any use to you. Here
> is my personal favorite for ASP.NET books, it is example-based and teaches
> you everything from the pure basics to almost all features that exist in
> ASP.NET:
>
> ASP.NET 2.0 Unleashed by Stephen Walther
>
> Almost everything I know either came from this book or experience, and it
> gives the code in VB.NET and C# (the C# code is only on the cd). Many
> people have recommended this book to me, and it is probably the best book
> I ever bought.


Thanks for the recommendation. However, I need to fast-track my
understanding so I don't have the time (unfortunately) to wade through a
lengthy book right now. In spite of appearances, my conceptual and
mechanical understanding is already strong-enough to unravel most examples.
A few lines of code is worth a thousand words (and in fact, my site is
already well underway).


 
Reply With Quote
 
 
 
Reply

Thread Tools

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
Plz, a simple answer to a simple question about IP addresses MeekiMoo Computer Support 0 07-28-2009 08:10 AM
Simple region code question... simple answer?? joseph.greer@gmail.com DVD Video 7 01-26-2007 09:07 PM
Simple Question - Simple Answer? Daniel Frey XML 4 01-12-2005 04:25 PM
Re: Simple Simple question!!! Kevin Spencer ASP .Net 0 06-25-2004 05:25 PM
Re: Simple Simple question!!! ashelley@inlandkwpp.com ASP .Net 0 06-25-2004 04:18 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57