473,657 Members | 2,851 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2526
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**@discussio ns.microsoft.co m> wrote in message
news:EA******** *************** ***********@mic rosoft.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**@discussio ns.microsoft.co m> wrote in message
news:EA******** *************** ***********@mic rosoft.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.Addre ssID = " &
mainformAddress ID"

--
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**@discussio ns.microsoft.co m> wrote in message
news:EA******** *************** ***********@mic rosoft.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**@discussio ns.microsoft.co m> wrote in message
news:0B******** *************** ***********@mic rosoft.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**@discussio ns.microsoft.co m> wrote in message
news:EA******** *************** ***********@mic rosoft.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
2888
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 knew db's and gave me long list of things to do with that particular database, first thing being that particular conversion. Truth is that I don't know a first thing about db's, let alone using mysql... I downloaded mysql form www.mysql.com and...
2
4732
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 Intranet. Any thoughts or experiences with this are welcome. Thanks in advance!
7
8683
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 developing a mid-sized Access database (60 tables, 25 simultaneous users). Although I've been tossing up if I should try to convert the back end to SQL server (We have a license), the performance has been good enough that it always seemed a waste of time,...
0
1757
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 form's Record source property I have following Stored Procedure (in .mdb there were similar query).
0
1511
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 VBA in form exit points. Am aware of the wizard to add sub-forms and sub-reports to data access pages, available at http://www.trigeminal.com/frmrpt2dap.asp Tried it once, prior to Access 2003, but couldn't get it to work. Unfortunately, the...
2
2128
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 accounts" there is a button to print the users and group relationships. As there are only about 50 authorized users and 6 groups, this has worked.
4
3310
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. I understand there are some data format differences in text field types and date types that need to be addressed if converting from Jet to Mysql. But other than things that have to be addressed when converting, what other changes must I make?...
2
1330
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 other little things like this that come up that I have not thought of? thank you for any info about this
1
2459
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 that has control or properties that microsoft access does not recognize and will ignore". have tried compacting and repairing and converting to MDE but to no avail. Is there anyone out there who could take a look at it. This is the first database...
0
8385
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8723
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8502
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8602
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7316
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6162
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
1941
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1601
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.