473,757 Members | 10,007 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 5035
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*******@compu serve.com (Rick Brown) wrote in message news:<82******* *************** ****@posting.go ogle.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******@nospa m.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
5784
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 modified that is to upgrade a big, more than 100,000 lines DOS based program developed by FoxPro 2.x to .NET platform. The design is as previous and the implementation will be reprogrammed. As a duty in my job I should find an answer about the
7
1687
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 thinking about something like we used to do using DDE. Any ideas would be great
13
7497
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 it, a frontend and a backend. Case 1: If vba code on the frontend updates many rows (360,000) on the backend, a form's timer event (from the frontend) will stop firing until the user gives the form focus. (Note that the update itself always...
49
14351
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 application is relatively big: around 200 tables, 200 forms and sub-forms, 150 queries and 150 repports, 5GB of data (SQL Server 2000), 40 users. I'm wondering what are the disadvantages of using Access as front-end? Other that it's not...
20
3345
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 speed. I like books with practical exercises, and also with test questions (like cert books) *2*
3
2670
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 in design view after a change. Today, I got the following message from the form when using a combo box. "The expression After Update you entered as the event property setting produced the following error: A problem occurred while Microsoft...
2
2561
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 messages in the label on the form as the shutdown cleanup proceeds. I have a hidden Startup form. So in the Startup form OnClose event, I am loading the message form and then changing the label caption as the code proceeds to do the cleanup of...
14
3887
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. Having a background in Pascal and some C++, I would have preferred those languages, but VBA made do. The SQL was fine. I believe that Security issues on the backend, and data integrity/ corruption complaints over the network may be a stumbling...
9
4495
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 like to know is the stability, speed & ease of use of both the products. I believe Access 2007 has a new file format too and that it may be slower.
2
19488
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 will be writing this article intended for those who are in the same level, or maybe lower, of my technical knowledge. I would be using layman's words, or maybe, my own words as how I understand them, hoping, you will understand it the same way that...
0
9298
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10072
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9885
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
8737
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
7286
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
6562
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();...
0
5172
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3829
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3399
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.