473,287 Members | 1,827 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,287 software developers and data experts.

Saving and display of records in asp page

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.
Jul 22 '05 #1
5 1701
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" <Ja**@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.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.

Jul 22 '05 #2
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" <Ja**@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.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.


Jul 22 '05 #3
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.....

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:1B**********************************@microsof t.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" <Ja**@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.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.


Jul 22 '05 #4
http://www.aspfaq.com/show.asp?id=2467

Bob Barrows

Jack wrote:
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" <Ja**@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.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.
Jul 22 '05 #5
I was not thinking clearly. I got it. 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" <Ja**@discussions.microsoft.com> wrote in message
news:D0**********************************@microsof t.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.


Jul 22 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Ralph Freshour | last post by:
I have a PHP web app using MySQL - when I save a .jpg file named test's.jpg I see that the filename on the unix server is: test\'s.jpg - the filename I end up saving in my SQL table is named...
6
by: middletree | last post by:
Yesterday, I posted a question which ended up giving me a lot of info, but the core question never got answered/solved. The short version is that when a page displays a number of records based on...
2
by: Debbie Davis | last post by:
Greetings, I have a page displaying records in a table across but there are too many records to display and they run off the page, SO I thought I could show five columns with an unlimited number...
10
by: Geoff Cox | last post by:
Hello, I have a series of pages each of which creates an array of values. How do I keep all the array values until the last page? Cheers Geoff
13
by: Stuart McGraw | last post by:
I haven't been able to figure this out and would appreciate some help... I have two tables, both with autonumber primary keys, and linked in a conventional master-child relationship. I've...
4
by: John Kandell | last post by:
Hi, I posted this in the asp.net group, but didn't get a response. Maybe someone here can help me with this... --- Would someone be able to shed some light on what is the cost of saving a...
1
by: mazdotnet | last post by:
Hi guys, I have to make a event signup page for our company that would display the event time/date in 3 different time zones (Eastern - New York, Central - Chicago, and Pacific - San Francisco)....
13
by: MLH | last post by:
I have a form, frmVehicleEntryForm. On it is a subform control named frmAddnlOwnrListSubForm. The subform control's source object is frmAddnlOwnrListSubForm. When I click on the subform control,...
0
by: hnpatel | last post by:
Hi.... How to set perticular number of records to display on one page of datareport in vb6.0? I want to display 10 records on one page of datareport. Yes i want to display 5 or 10 records per...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 7 Feb 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:30 (7.30PM). In this month's session, the creator of the excellent VBE...
0
by: MeoLessi9 | last post by:
I have VirtualBox installed on Windows 11 and now I would like to install Kali on a virtual machine. However, on the official website, I see two options: "Installer images" and "Virtual machines"....
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: Aftab Ahmad | last post by:
So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below. Dim IE As Object Set IE =...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.