473,412 Members | 2,994 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,412 software developers and data experts.

Converting Access form to a asp form

Hi,
I have an Access application which need to be converted to asp-sql server
application. This Access application uses a single form. This form has got a
SS number with names and age. The form has two subforms. One of the subform
uses a physical test score which is basically four different fields while the
other subform is one that has a written test score with three fields. Entry
to both physical and written scores are done through this form. Both the
forms can have multiple entries to make sure we are tracking historical
scores. The relationship between the ssn table and the physical test score
table is 1: n while that between ssn table and the written score table is 1:
n. With this scenario what is the best way to design form in asp pages? Any
references, advise or help is appreciated. Thanks.
May 25 '06 #1
6 2510
Its not clear, if entry has to be done in the form, then why are sub
form's needed.

vicky

May 27 '06 #2
vicky wrote:
Its not clear, if entry has to be done in the form, then why are sub
form's needed.

That's Access terminology. Access has a control called a subform which is
commonly used in the situation described in the OP.

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
May 27 '06 #3

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:EA**********************************@microsof t.com...
Hi,
I have an Access application which need to be converted to asp-sql server
application. This Access application uses a single form. This form has got a SS number with names and age. The form has two subforms. One of the subform uses a physical test score which is basically four different fields while the other subform is one that has a written test score with three fields. Entry to both physical and written scores are done through this form. Both the
forms can have multiple entries to make sure we are tracking historical
scores. The relationship between the ssn table and the physical test score
table is 1: n while that between ssn table and the written score table is 1: n. With this scenario what is the best way to design form in asp pages? Any references, advise or help is appreciated. Thanks.

So to distill out of the above the non-business revelant details you have a
form representing a single master record. Inside which you have two sub
forms each listing child records. Each subform is a scrollable list of
multiple child records. Is this correct?

You mentioned that there are multiple child records for the purpose of
history. If so are each record displayed editable or is it only possible to
add new records not modify existing ones?

May 29 '06 #4
Thanks to everyone for the reply. I apologize for not getting back early as I
got sick. Anthony, please note that the way access form is now, one can both
add and edit the subform details. However, I am sure the handling via asp
will be somewhat different. My question was, how this access scenario is
going to be handled in asp form as asp does not have sub form concept. I am
still looking for the best way to handle the situation so that the design of
the system is as optimizes as possible.
Best regards,
"Anthony Jones" wrote:

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:EA**********************************@microsof t.com...
Hi,
I have an Access application which need to be converted to asp-sql server
application. This Access application uses a single form. This form has got

a
SS number with names and age. The form has two subforms. One of the

subform
uses a physical test score which is basically four different fields while

the
other subform is one that has a written test score with three fields.

Entry
to both physical and written scores are done through this form. Both the
forms can have multiple entries to make sure we are tracking historical
scores. The relationship between the ssn table and the physical test score
table is 1: n while that between ssn table and the written score table is

1:
n. With this scenario what is the best way to design form in asp pages?

Any
references, advise or help is appreciated. Thanks.

So to distill out of the above the non-business revelant details you have a
form representing a single master record. Inside which you have two sub
forms each listing child records. Each subform is a scrollable list of
multiple child records. Is this correct?

You mentioned that there are multiple child records for the purpose of
history. If so are each record displayed editable or is it only possible to
add new records not modify existing ones?

May 30 '06 #5
ASP doesn't have any kind of concept of how you are displaying stuff on
a web page. It's html that you use to do this. You imitate a subform
in html. The "main" form may, for instance, contain a company record
(which will have an associated AddressID, or other unique identifier).

The "subform" will contain employees at that company.

psuedo code:

sql="SELECT fields FROM Employees WHERE Employees.AddressID = " &
mainformAddressID"

--
Mike Brind
Jack wrote:
Thanks to everyone for the reply. I apologize for not getting back early as I
got sick. Anthony, please note that the way access form is now, one can both
add and edit the subform details. However, I am sure the handling via asp
will be somewhat different. My question was, how this access scenario is
going to be handled in asp form as asp does not have sub form concept. I am
still looking for the best way to handle the situation so that the design of
the system is as optimizes as possible.
Best regards,
"Anthony Jones" wrote:

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:EA**********************************@microsof t.com...
Hi,
I have an Access application which need to be converted to asp-sql server
application. This Access application uses a single form. This form has got

a
SS number with names and age. The form has two subforms. One of the

subform
uses a physical test score which is basically four different fields while

the
other subform is one that has a written test score with three fields.

Entry
to both physical and written scores are done through this form. Both the
forms can have multiple entries to make sure we are tracking historical
scores. The relationship between the ssn table and the physical test score
table is 1: n while that between ssn table and the written score table is

1:
n. With this scenario what is the best way to design form in asp pages?

Any
references, advise or help is appreciated. Thanks.

So to distill out of the above the non-business revelant details you have a
form representing a single master record. Inside which you have two sub
forms each listing child records. Each subform is a scrollable list of
multiple child records. Is this correct?

You mentioned that there are multiple child records for the purpose of
history. If so are each record displayed editable or is it only possible to
add new records not modify existing ones?


May 30 '06 #6

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:0B**********************************@microsof t.com...
Thanks to everyone for the reply. I apologize for not getting back early as I got sick. Anthony, please note that the way access form is now, one can both add and edit the subform details. However, I am sure the handling via asp
will be somewhat different. My question was, how this access scenario is
going to be handled in asp form as asp does not have sub form concept. I am still looking for the best way to handle the situation so that the design of the system is as optimizes as possible.
Best regards,

There are a great many variables to consider here.

What impact is there on the users if you take a radically different approach
to the UI to make it easy to implement in classic ASP style. That is rows
of static data with links to popup forms that allow the line data to be
edited.

Alternatively you could go for a similar UI with everything being editable
and communicate with the back end using XML. This is much more complex to
build but can give the user a better experience.

In either case a page with an a couple of IFrames is probably the direction
you would be looking in.


"Anthony Jones" wrote:

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:EA**********************************@microsof t.com...
Hi,
I have an Access application which need to be converted to asp-sql server application. This Access application uses a single form. This form has got
a
SS number with names and age. The form has two subforms. One of the

subform
uses a physical test score which is basically four different fields
while the
other subform is one that has a written test score with three fields.

Entry
to both physical and written scores are done through this form. Both
the forms can have multiple entries to make sure we are tracking historical scores. The relationship between the ssn table and the physical test score table is 1: n while that between ssn table and the written score table

is 1:
n. With this scenario what is the best way to design form in asp
pages? Any
references, advise or help is appreciated. Thanks.

So to distill out of the above the non-business revelant details you have a form representing a single master record. Inside which you have two sub
forms each listing child records. Each subform is a scrollable list of
multiple child records. Is this correct?

You mentioned that there are multiple child records for the purpose of
history. If so are each record displayed editable or is it only possible to add new records not modify existing ones?

May 31 '06 #7

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

Similar topics

17
by: chicha | last post by:
Hey people, I have to convert MS Access 2000 database into mysql database, the whole thing being part of this project I'm doing for one of my faculty classes. My professor somehow presumed I...
2
by: MX1 | last post by:
Does anyone know if you can convert a form into a data access page? It looks like you can only convert tables and I have a form with some very complex calculations that I'd love to leverage via an...
7
by: RCS | last post by:
Okay, a rather 'interesting' situation has arisen at a place I work: I need to convert a database from Access to something that can be used over the web. I am currently maintaining and...
0
by: Timppa | last post by:
Hi, I'm converting ACCESS 2000 database to SQL Server. I have .adp project. In the .mdb I have form where I'll insert rows into two different tables using docmd.GoToRecod ,,acNewRec. In .adp...
0
by: Bob Alston | last post by:
Looking for the best resources for converting an existing Access 2003 database to the web. Have an application that has many forms and reports, with sub-forms and sub-reports and liberal use of...
2
by: Mark Flippin | last post by:
I'm converting the backend of an Access 2000 database to SQL Server 2000. The existing database has user and group security through a specific workgroup file. Under the "user and group...
4
by: Bob Alston | last post by:
Anyone have experience with converting an access app from Jet database to Mysql? I am specifically looking for any changes I would have to make to my access forms, queries, modules, vba code, etc....
2
by: sparks | last post by:
When I converted a database yesterday I noticed one little thing I had not seen before. Any fields on the forms that were visible=no became visible = yes after the conversion.. Is there any...
1
by: murraystewart | last post by:
I have spent days building a database in access 2003 and the found it needs to run on Access 97, I did the conversion but the form is not opening with an error message "you loaded a form or report...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

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.