Converting Access form with tabs to Web app...

  • Thread starter Jim Burke in Novi
  • Start date
J

Jim Burke in Novi

I have an access .mdb database that I may need to convert to a web
application. One of my forms has several tabs on it, each with numerous
controls (lots of data entry stuff, not a bound form, all data on various
tabs related). From what I've read so far, I don't really want to use Access
DAPs, and as far I know ASP.NET can't handle tabs - I think this is more a
limitation of HTML than of ASP. Do you know of any web front-end app that can
handle tabs, or is this just not possible because of HTML limitations?
 
B

Brendan Reynolds

You'd probably do better to ask the question in an ASP.NET forum, Jim (if
that's the technology you plan to use). For whatever it may be worth, if I
want to display different information in an ASP.NET page without going to a
different page, I use panel controls and toggle their Visible property. But
the ASP.NET gurus may well have other suggestions.
 
D

Duane Hookom

If you have access to ColdFusion, this functionality is available in the
<cfform> tag in version 7.
 
Top