Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I build a tabular form using ASP?

Status
Not open for further replies.

fmasin

Technical User
May 3, 2002
163
GB
Hi,

Just wondering whether anybody out there knows how to build a tabular form using ASP - something similar to tabular forms in Ms Access.



Thanks and regards,

Francis
 
Many thanks Tony - will try and feedback on my findings...

Thanks and regards,

Francis
 
Anyway, considering that you are here already here is a CSS that does it

FORM
{
Font-Family: Arial, Helvetica, Sans-Serif;
Font-Size: 10pt;
Border-Color: FFFFFF;
Border-Style: none;
Border-Width: 0;
Margin: 0;
}
.textbox
{
Font-Family: Arial, Helvetica, Sans-Serif;
Font-Size: 10pt;
Border-Color: FFFFFF;
Border-Style: none;
Border-Width: 0;
Margin: 0;
}


Just create your textboxes like this

<input type="textbox" name="txname" class="textbox">


Cheers

QatQat

Life is what happens when you are making other plans.
 
Qatqat,

Many thanks for this....I had actually failed to get the right solution to my problem...I have looked at the CSS forum without much joy.

Thanks and regards,

Francis
 
QatQat,

I have tried your code but it is not quite what I want. What I mean is how to create a form with various tabs, so that I can link it to the database to show the master record on the first page and the details on the subsequent pages. Please assist.

Thanks and regards,

Francis
 
-DNG

Thank you so much for this. However, the framestab.asp does not work. There is a missing <--include file...to do with debugging.. How do I get it to work?

And how would I incorporate this code with my stylesheet. When I call up the stylesheet, it seems to mix things up...may be it's just me.

Thanks and regards,

Francis
 
DNG,

Thanks but I require a username and password to log on to the link...

Thanks and regards,

Francis
 
Francis,

That website is a free site...just register and get a free membership and you can download the code without any problems...

-DNG
 
DNG,

It doesn't actually allow me to register. All it is prompting me for, is a username and password. No option to register at all. Perhaps it's just me. But I still can't see anything else ...

Thanks and regards,

Francis
 

Works fine for me in IE and Firefox... ? It goes directly to the code..



A smile is worth a thousand kind words. So smile, it's easy! :)
 
damber,

that website has a limit of downloading code form the site without registrering to the site...may be you visited the site for the first time and havent downloaded anything yet...but once you try to downloaded couple of codes...then it will propmt for asking you to register for the site...

-DNG
 

ah, I see - you're right, I tried it a couple of times and the third time it asked for me to sign-up - easy to get around, just delete the cookies for the site. But it looks easy enough so is probably worthwhile registering anyway.



A smile is worth a thousand kind words. So smile, it's easy! :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top