473,378 Members | 1,382 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,378 software developers and data experts.

Access form to ASP.NET

I have a form built in Access2000 that looks like the hardcopy in all
ways including color. I now want to move this form to the company
Intra-Net via ASP.NET.
Is there a way to wizard this form over to .NET or can this form be
rebuilt in a .NET editor retaining the same look? OR?????

RICK
Nov 12 '05 #1
4 5016
Rick Brown wrote:
I have a form built in Access2000 that looks like the hardcopy in all
ways including color. I now want to move this form to the company
Intra-Net via ASP.NET.
Is there a way to wizard this form over to .NET or can this form be
rebuilt in a .NET editor retaining the same look? OR?????

RICK


Rick,

It's hard to say without knowing more about the form, but generally speaking
you can recreate the look of a form pretty easily in html. The problem comes
in the way the form actually behaves. Some of the functionality you take for
granted in Access is unavailable, or much harder to implement, in a web
form.

One simple example: if you have data that changes after selecting a value
from a combo box, you have to either make a round trip to the server (which
could be fast or slow depending on the complexity of the page) to get the
updated data, or somehow download and cache all of the relevant data when
the page loads and then use javascript to change the contents of your other
controls. The stateless nature of web connections forces you to rethink a
lot of the ways you may have learned to do things.

In the end, you can certainly reproduce the business functionality of your
form, but the interface (not the look, necessarily, but the behavior) will
probably change. It's more a question of whether the easier access and
deployment in a web application is worth the extra work you have to do as a
developer. FWIW, in my experience once you get over the learning curve, it's
not hard to build good forms in .NET.

I'm not aware of any wizard that will do the job for you.

HTH.

--

Peter
Nov 12 '05 #2
Hi, Rick
There is some change on your archtect,
move your access database to web server and generate asp.net(VB) form code
wizard from www.exmlsoft.com
It generates a code that base on your Access Table.

rb*******@compuserve.com (Rick Brown) wrote in message news:<82**************************@posting.google. com>...
I have a form built in Access2000 that looks like the hardcopy in all
ways including color. I now want to move this form to the company
Intra-Net via ASP.NET.
Is there a way to wizard this form over to .NET or can this form be
rebuilt in a .NET editor retaining the same look? OR?????

RICK

Nov 12 '05 #3
Thanks for the reply,
The form I'm trying to place on the intra-net is for requesting
maintenance and is strickly for input into the database. It will
return no data from the server only accept data. The form does have a
few listboxes that will have hardcoded lists of choices.
I have tried using ASP.NET Web Matrix as my editor to build the form
but found that after dropping a textbox on the form I couldn't drag or
move the textbox to a new position.
I'm new at building an aspx page and was hoping building a form would
be more like working in Access2000 form design.
Is there another editor out there that is user friendly and will give
me more precision in the placement of controls.
Thanks again for taking the time,
RICK

"Peter" <pe******@nospam.net> wrote in message news:<bl************@ID-88800.news.uni-berlin.de>...
Rick Brown wrote:
I have a form built in Access2000 that looks like the hardcopy in all
ways including color. I now want to move this form to the company
Intra-Net via ASP.NET.
Is there a way to wizard this form over to .NET or can this form be
rebuilt in a .NET editor retaining the same look? OR?????

RICK


Rick,

It's hard to say without knowing more about the form, but generally speaking
you can recreate the look of a form pretty easily in html. The problem comes
in the way the form actually behaves. Some of the functionality you take for
granted in Access is unavailable, or much harder to implement, in a web
form.

One simple example: if you have data that changes after selecting a value
from a combo box, you have to either make a round trip to the server (which
could be fast or slow depending on the complexity of the page) to get the
updated data, or somehow download and cache all of the relevant data when
the page loads and then use javascript to change the contents of your other
controls. The stateless nature of web connections forces you to rethink a
lot of the ways you may have learned to do things.

In the end, you can certainly reproduce the business functionality of your
form, but the interface (not the look, necessarily, but the behavior) will
probably change. It's more a question of whether the easier access and
deployment in a web application is worth the extra work you have to do as a
developer. FWIW, in my experience once you get over the learning curve, it's
not hard to build good forms in .NET.

I'm not aware of any wizard that will do the job for you.

HTH.

Nov 12 '05 #4
Rick Brown wrote:
Thanks for the reply,
The form I'm trying to place on the intra-net is for requesting
maintenance and is strickly for input into the database. It will
return no data from the server only accept data. The form does have
few listboxes that will have hardcoded lists of choices.
I have tried using ASP.NET Web Matrix as my editor to build the form
but found that after dropping a textbox on the form I couldn't drag or
move the textbox to a new position.
I'm new at building an aspx page and was hoping building a form would
be more like working in Access2000 form design.
Is there another editor out there that is user friendly and will give
me more precision in the placement of controls.
Thanks again for taking the time,
RICK


<snip original question>

Rick,

I haven't used Web matrix, so I'm not sure how it does things. In Visual
Studio, each aspx page has a property called pageLayout. You can choose
GridLayout, which displays a grid on the design screen, and allows you to
place elements in specific positions on the screen, and uses CSS positioning
styles to maintain the desing, or FlowLayout, which just gives you a blank
aspx page.

Keeping it somewhat simple, using the latter layout, you won't be able to
move controls around on the form unless you have hltml or asp tables set up
to hold controls. I never use GridLayout, so even assuming this is available
in Web Matrix, I can't tell you much about it. When you open a new page,
does it have a grid of little dots, or do you see just whitespace?
Furthermore, from what I've read, people recommend against grid layout
anyway, saying that it seems to be difficult to get consistent layout on
different browsers.

Put another way, you'll probably have to learn some html coding to do what
you want to do. It's not going to be drag and drop like in Access.

--

Peter
Nov 12 '05 #5

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

Similar topics

6
by: Hamed | last post by:
Hello I have employed as a developer in a software company that its team uses FoxPro / VB 6.0 / VC++ 6.0 as the developing tools and newly is going to migrate to VS.NET. There is a project...
7
by: Mike Dwyer | last post by:
I need a VB 6 app to automate a microsoft access MDB application. Specifically, it needs to open a form in Access and read information keyed into that form. I know this is "old school" but I'm...
13
by: Manuel Lopez | last post by:
I have a puzzling form timer problem that I didn't experience prior to Access 2003 (though I'm not sure access 2003 is to blame). Here's the situation: a computer has two access 2003 databases on...
49
by: Yannick Turgeon | last post by:
Hello, We are in the process of examining our current main application. We have to do some major changes and, in the process, are questionning/validating the use of MS Access as front-end. The...
20
by: Olav.NET | last post by:
I am a .NET/C++ developer who is supposed to do some work with Access. I do not know much about it except for the DB part. Questions: *1* I am looking for INTENSIVE books to get quickly up to...
3
by: dixie | last post by:
I have an Access 2000 form which has been running OK for a long time. Lately, it is playing up and doing things like causing Access to close suddenly when the form is opened or when saving the form...
2
by: rdemyan via AccessMonster.com | last post by:
I have a custom message form that I want to display when the user shuts down my app. Some clean up needs to be done during shutdown and I want to display this form and then display various...
14
by: ApexData | last post by:
I am considering building some distributable commercial applications. For about a year now, I have been using Access2000. This was my first venture into object oriented database development. ...
9
by: prakashwadhwani | last post by:
Hi !! I'm about to develop a new project for a client. Should I go about it in Access 2003 or 2007 ? Purchasing it either for me or for my client is not a major consideration here ... what I'd...
2
hyperpau
by: hyperpau | last post by:
Before anything else, I am not a very technical expert when it comes to VBA coding. I learned most of what I know by the excellent Access/VBA forum from bytes.com (formerly thescripts.com). Ergo, I...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...

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.