i have a form with 2 textbox and 2 buttons if i push the 2nd button it summits the form to a process page and add both textbox info into a database( with the check if they are empty), this because the form action is set to go to that page.
but i want the 1st button to do a test if the 1st textfield is empty and if is not i want it to post just the value of the first textbox to another page(process2). i've got the 2nd button working allright but i dont know how to so set up the code to the first button.
I am trying to what seems simple but can not get it to work. I am using Ultradev 4
I have a form that uses a checkbox to indicate weather a call has been closed or not. However if the call has been closed then I need a resolution text field to contain data. ie: If checkbox selected then resolution textfield can't be empty.
I've tried yaromats check form extension but it DOES NOT work as I am using a multiline text field. The extension works for a sinle line textfield but not a multiline.. I don't know why?
As a result I don't get the option to select this field using the "This must be checked to" option in Yaromats extension.
We are thinking of implementing ASPUpload component to allow users to upload files. Which is the best antivirus (virus scan) which we can use so that it intergrates possibly has a COM interface.
or is there another way? with our websites and we would be able to scan the documents in the temporary folder and upon successful scanning move them into a designated folder on the server? Does anyone know of an article or website where I can get a sample code for scanning uploaded documents.
If I had two populated combo boxes, one of them has product code and other product types/product list and wanted to scan the product code.Is it possible to scan a product code(barcode) and would that select the product code from the list if it is there,would that be the same as If I manually selected that product code,but I am just scanning it.
I am trying to let customers that have a scanner to scan the product which populates the product type according to product code scanned.,for example if I scan Victoria that selects Melbourne,if that is possible I should be fine.
But I also have to be able to let customers that don't have a scanner to select the product from the product list,which means if they have a scanner I cross reference the product code=product type if not then show all the products in the list and that is where my idea falls apart as at this point in time I am not sure how to populate all the products if no product code exists. The list of products and codes is huge.
for example... the data in my datafield is "BROWN DOGS" but when I viewed it on my asp page it will only display "BROWN" do you have any idea on how I could display the whole content? my source code is this -->
I have 4 radio buttons and beside each radio button I have a textfield. When a certain radio button is selected, only the text field beside it becomes enabled and the rest of the text fields are disabled. What I would like to do is to be able to change the background color of the text fields so they are grey if they are diabled and white if enabled.
I have a bunch of text fields that the user tabs through. How would I go about calling a function when a specific textbox loses focus so that when they tab out I can make a pop up and allow them to select some info
I have javascript calander in the form of three list boxes (day, month, year). when selected I would like the values to put into a text field in Dreamweaver so I can then submit to the database. Is this possible and how could it be achieved.
I'm trying to retrieve the name of a textfield, instead of it's value. I'm using a html page with a very simple form, containing 8 textfields. When submitted I call an asp page, and from that page I want to retrieve the textfield names from the submitted form.
Does anybody have an idea how the do this? It's for entering value's into an xml file and i want to use the textfield name's for naming the new xml elements.
how do i retian values in the textfield even after it is submitted ? Like for example, when you fill out most application forms, after submitting if there is an error it redirects you back to the first page alerting you of the error but the other values still remain. I would like to incoporate this function. where i can find them ?
how do i retian values in the textfield even after it is submitted ?
Like for example, when you fill out most application forms, after submitting if there is an error it redirects you back to the first page alerting you of the error but the other values still remain..
This is the snippet I use to achieve the above example, which is fine, when I use this snippet, and make the &""& without space between the quotes, then it returns: -
I am trying query the data from db and populate in the web form's textbox field. so far I cannot put that record into the text field box. anyone has idea on that, below is my sample code:
I'm trying to deal with a few records in a db that are missing data in one or more fields, which breaks my page, causing a BOF or EOF error, since the recordset is empty. I can check for an initial EOF, before any traversing of the records, but don't know how exactly to bypass execution of the record accessing from there.
I am working with an array that I am populating off my database. However, in some instances the array will be empty. Is there any way to determine an empty array besides ubound = 0 (which might mean 1 record in included)?
users are entering data, but when they submit the form, once in a while request.forms returns an empty string instead of the string its supposed to get. Anyone seen this behavior before? Is there a solution
i want to count all the records in my database where a certain field is empty.
heres my statement: "SELECT Count(*) As Total FROM table WHERE field1='value' AND field2=' ' "
gives an error. If it not possible. can the next be done: 1 count all the records. 2 count the records where field2='Yes' 3 subtract the two to get where field 2 is empty?
i know it's just something small, but i can't seem to figure it out. i also tried field2 != 'Yes'
It works fine, but sometimes the Subject Name field is empty, so instead of a blank space, I'd like to put something like "Empty Recordset" there. Is there anyway to do this with my current code?
How the heck do you work out what is actually in a db field that appears to be empty? I have fields that appear to be empty but do not seem to evaluate to empty or null, so test using IsEmpty or IsNull are useless, I 'm guessing it contains spaces or non-printing characters of some sort but how do I test for these?
This one's probably been asked before but I'm tired of trying to find a solution (if there is one!). I have an asp update page and I'd like to convert all empty fields to NULL prior to updating the Access db rather than permitting zero length fields in the db.
Is this possible? Is there any way to globally declare this for all text fields on the asp page rather than having to do a whole whack of "if then" formats? Is there something I can set in the field's properties in Access that will deny zero length yet won't cause the asp update to choke and return an error?