|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Saving and display of records in asp pageI need to build a asp page where it would serve as a data entry record page as well as display page for records saved. This page should also allow editing of records that has been saved. e.g. SAVEBUTTON SS# EntryBox Name EntryBox Date EntryBox Revenue Generated EntryBox DISPLAY OR EDIT BUTTON ---------- ------------ ------------- ------------------------ ---------- ------------ ------------- ------------------------ ---------- ------------ ------------- ------------------------ The process of the first part of saving record is fine. However, the second part of displaying all the records that has been saved including the current record saved is where I am having problems. I would appreciate any help/concepts/articles for handling display of records as above. Hope I am clear to explain my problem. Regards. Just save the data and then redirect back to the same page. If the page has
code in it to show the records it will show the new ones as well. Show quoteHide quote "Jack" <J***@discussions.microsoft.com> wrote in message news:D01608EE-02D7-4E40-84EF-C75D1D224847@microsoft.com... > Hi, > I need to build a asp page where it would serve as a data entry record > page > as well as display page for records saved. This page should also allow > editing of records that has been saved. > > e.g. > > SAVEBUTTON > SS# EntryBox Name EntryBox Date EntryBox Revenue Generated > EntryBox > > DISPLAY OR EDIT BUTTON > > ---------- ------------ ------------- > ------------------------ > ---------- ------------ ------------- > ------------------------ > ---------- ------------ ------------- > ------------------------ > > The process of the first part of saving record is fine. However, the > second > part of displaying all the records that has been saved including the > current > record saved is where I am having problems. > > I would appreciate any help/concepts/articles for handling display of > records as above. Hope I am clear to explain my problem. Regards. Thanks for the advise, Curt. I am trying to find reference to as how to loop
through records to display records, line by line. Do you have any reference for this kind of manipulation? Thanks. Show quoteHide quote "Curt_C [MVP]" wrote: > Just save the data and then redirect back to the same page. If the page has > code in it to show the records it will show the new ones as well. > > > > -- > Curt Christianson > Site & Scripts: http://www.Darkfalz.com > Blog: http://blog.Darkfalz.com > > > "Jack" <J***@discussions.microsoft.com> wrote in message > news:D01608EE-02D7-4E40-84EF-C75D1D224847@microsoft.com... > > Hi, > > I need to build a asp page where it would serve as a data entry record > > page > > as well as display page for records saved. This page should also allow > > editing of records that has been saved. > > > > e.g. > > > > SAVEBUTTON > > SS# EntryBox Name EntryBox Date EntryBox Revenue Generated > > EntryBox > > > > DISPLAY OR EDIT BUTTON > > > > ---------- ------------ ------------- > > ------------------------ > > ---------- ------------ ------------- > > ------------------------ > > ---------- ------------ ------------- > > ------------------------ > > > > The process of the first part of saving record is fine. However, the > > second > > part of displaying all the records that has been saved including the > > current > > record saved is where I am having problems. > > > > I would appreciate any help/concepts/articles for handling display of > > records as above. Hope I am clear to explain my problem. Regards. > > >
http://www.aspfaq.com/show.asp?id=2467
Bob Barrows Jack wrote: Show quoteHide quote > Thanks for the advise, Curt. I am trying to find reference to as how > to loop through records to display records, line by line. Do you have > any reference for this kind of manipulation? Thanks. > > "Curt_C [MVP]" wrote: > >> Just save the data and then redirect back to the same page. If the >> page has code in it to show the records it will show the new ones as >> well. >> >> >> >> -- >> Curt Christianson >> Site & Scripts: http://www.Darkfalz.com >> Blog: http://blog.Darkfalz.com >> >> >> "Jack" <J***@discussions.microsoft.com> wrote in message >> news:D01608EE-02D7-4E40-84EF-C75D1D224847@microsoft.com... >>> Hi, >>> I need to build a asp page where it would serve as a data entry >>> record page >>> as well as display page for records saved. This page should also >>> allow editing of records that has been saved. >>> >>> e.g. >>> >>> SAVEBUTTON >>> SS# EntryBox Name EntryBox Date EntryBox Revenue Generated >>> EntryBox >>> >>> DISPLAY OR EDIT BUTTON >>> >>> ---------- ------------ ------------- >>> ------------------------ >>> ---------- ------------ ------------- >>> ------------------------ >>> ---------- ------------ ------------- >>> ------------------------ >>> >>> The process of the first part of saving record is fine. However, the >>> second >>> part of displaying all the records that has been saved including the >>> current >>> record saved is where I am having problems. >>> >>> I would appreciate any help/concepts/articles for handling display >>> of records as above. Hope I am clear to explain my problem. Regards. -- Microsoft MVP -- ASP/ASP.NET Please reply to the newsgroup. The email account listed in my From header is my spam trap, so I don't check it very often. You will get a quicker response by posting to the newsgroup. You mean you dont know how to query a DB and show the results?
Start with a look around www.aspfaq.com and I even have stuff on my site (www.darkfalz.com) that has samples. You should be learning this before you learn to use ASP to write to the db..... Show quoteHide quote "Jack" <J***@discussions.microsoft.com> wrote in message news:1BD6D6CE-FC09-47E7-922B-8DE3F51F9C27@microsoft.com... > Thanks for the advise, Curt. I am trying to find reference to as how to > loop > through records to display records, line by line. Do you have any > reference > for this kind of manipulation? Thanks. > > "Curt_C [MVP]" wrote: > >> Just save the data and then redirect back to the same page. If the page >> has >> code in it to show the records it will show the new ones as well. >> >> >> >> -- >> Curt Christianson >> Site & Scripts: http://www.Darkfalz.com >> Blog: http://blog.Darkfalz.com >> >> >> "Jack" <J***@discussions.microsoft.com> wrote in message >> news:D01608EE-02D7-4E40-84EF-C75D1D224847@microsoft.com... >> > Hi, >> > I need to build a asp page where it would serve as a data entry record >> > page >> > as well as display page for records saved. This page should also allow >> > editing of records that has been saved. >> > >> > e.g. >> > >> > SAVEBUTTON >> > SS# EntryBox Name EntryBox Date EntryBox Revenue Generated >> > EntryBox >> > >> > DISPLAY OR EDIT BUTTON >> > >> > ---------- ------------ ------------- >> > ------------------------ >> > ---------- ------------ ------------- >> > ------------------------ >> > ---------- ------------ ------------- >> > ------------------------ >> > >> > The process of the first part of saving record is fine. However, the >> > second >> > part of displaying all the records that has been saved including the >> > current >> > record saved is where I am having problems. >> > >> > I would appreciate any help/concepts/articles for handling display of >> > records as above. Hope I am clear to explain my problem. Regards. >> >> >> I was not thinking clearly. I got it. Thanks.
Show quoteHide quote "Curt_C [MVP]" wrote: > Just save the data and then redirect back to the same page. If the page has > code in it to show the records it will show the new ones as well. > > > > -- > Curt Christianson > Site & Scripts: http://www.Darkfalz.com > Blog: http://blog.Darkfalz.com > > > "Jack" <J***@discussions.microsoft.com> wrote in message > news:D01608EE-02D7-4E40-84EF-C75D1D224847@microsoft.com... > > Hi, > > I need to build a asp page where it would serve as a data entry record > > page > > as well as display page for records saved. This page should also allow > > editing of records that has been saved. > > > > e.g. > > > > SAVEBUTTON > > SS# EntryBox Name EntryBox Date EntryBox Revenue Generated > > EntryBox > > > > DISPLAY OR EDIT BUTTON > > > > ---------- ------------ ------------- > > ------------------------ > > ---------- ------------ ------------- > > ------------------------ > > ---------- ------------ ------------- > > ------------------------ > > > > The process of the first part of saving record is fine. However, the > > second > > part of displaying all the records that has been saved including the > > current > > record saved is where I am having problems. > > > > I would appreciate any help/concepts/articles for handling display of > > records as above. Hope I am clear to explain my problem. Regards. > > >
Generate a table with ASP
Please help with cmd.execute select SQL? sql problem with sub queries beginning tutorial for exporting data from ASP to Excel An error occured in ASP page how to use SSL with asp/vbscript string Truncated error How to use different sites in IIS on WinXP Pro Query LDAP with ASP HTTP_REFERER question |
|||||||||||||||||||||||