Textboxes

I have two textboxes, nett, vat and gross value.Nett and vat are entered manually, is there a way to say, when nett textbox lostfocus or vat lostfocus then add the two and show the value in the gross value textbox WITHOUT calling the page again as i would have to do in vbscript?

View Replies


ADVERTISEMENT

Displaying 2DP In Textboxes

When I retrieve this data into standard text boxes (using ASP/ADO) so that
the user can update/file the following problems occur on what I would call
price fields:

10 << I want 10.00

11.6 << I want 11.60

12.89 << this is fine

My MySQL DB holds prices as decimal(10,3) so I know the decimal data isn't
chopped at this point.

Before the data is displayed in these boxes I created the below function to
parse the data before it is written to the boxes: Code:

View Replies View Related

Query AND/OR For Textboxes

I have 6 textboxes where if I fill them up I want the query to search if either one of them has results found. I have this but it's not working:

SQL = "SELECT * FROM bible WHERE "
SQL = SQL & "text_data LIKE '%" & Keyword & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordb & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordc & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordd & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keyworde & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordf & "%' AND "
SQL = SQL & "book_spoke = '" & spoke_number & "'"

iCounter = iCounter + 1

(I would like to know the use of the iCounter since I use it from other examples but don't know why it's there.)

I've tried this too but this gives every record within
"book_spoke = '" & spoke_number & "'"

Code:

View Replies View Related

Textboxes Are Yellow

All of a sudden about 50% of my textboxes are yellow (as opposed to theusual white color). It started when I started on an ASP project, but this could have been coincidental. I have noticed that it shows yellow textboxes on many other webpages.

View Replies View Related

Disabled Textboxes

The input forms are created using FORMMANGER of MS Visual Interdev 6.0(ASP Code). The forms containing textboxes and bottons (with disable property) are shown correctly in IE5. But when same forms are viewed in IE6 the disabled textboxes and buttons are shown distorted.

View Replies View Related

Loop Through Textboxes

Ho can i loop through textboxes and then collect the data filled into them.I've done one for checkboxes but can't get my head around doing the one for textboxes.

View Replies View Related

Insert Textboxes In The Form

Someone have a script to insert dynamic items in the form?
For example...

In my default form have 5 textboxes... I need to put a button to users to "add new item"... and add textboxes to the form.

View Replies View Related

Posting Values From Sp In Textboxes...

i need to get the values from the stored procedure below, basically the Name, Description, and is Active values and display them in two textboxes and a checkbox. How can i do this? Or can it be done with this stored procedure? I havent been able to find any good examples on the web... Code:

View Replies View Related

Excel Cells To Form Textboxes

if i have an standard excel file and i have data in there in specific cells. Is it possible to have some upload facility that will be able to paste it to specific asp form textboxes?

e.g if the data in the excel file was in cell c4, i would want to paste it into textbox4. Is that possible.

OR

Is it possible to upload an excel file and to put specifc data from different cells directly into an access database.

e.g excel file -c4 i would want to paste it to rs("test4")

View Replies View Related

Multiple Radio Buttons/textboxes – Inserting Into The SQL DB?

I’ve a few radio buttons; few of them have input textboxes and dropdown list.
I use Select case to insert values (depend on which radio button that you've selected) into the sql db but it doesn’t work. Then I use if, elseif and else…the value of radio still doesn’t insert into the DB. In this case how can we insert the value(s) into the DB? Code:

View Replies View Related

Need To Perform Form Validation For Negative Numbers And Letters In Textboxes

I have two URLs. Static.htm and dynamic.asp

Static.htm
Contains a form with two text boxes, called text_1 and text_2 and some other info that is irrelevant for my question.

Dynamic.asp
Need some code to check that the text boxes only contain values greater than 0 and only numbers. Thus if any of the textboxes for example contain -3 or the letter m I want to cancel the form submission and display some kind of error message.

How can I achieve that?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved