This may not be possible on the server side, so apologies if this is the
wrong group for this post.My form consists of an unknown number of pairs of text boxes. They are named textbox_a and textbox_b. I then split the comma separated list
that gets posted:
textbox_a = split(Request.Form("textbox_a"),",")
for i = ubound(textbox_a)
...insert into db
then do the same for textbox_b
If anyone puts a comma into one of the text boxes, this will result in
unmatched pairs. How can I deal with the comma, or prevent it?
I have a page that update an Access db. When I operate on this page, randomly the screen is refreshed and I loss the data that I have eventually digited and not saved.
I am trying to prepare a report to export data to a csv file and, in addtion to the charaters present in the DB the csv file also contains some charaters which i do not understand (some square type characters), i tried to copy them here but they seem to changing to spaces when copied here.
My website has been targetted by a web scam. They have sent out an email, which looks as if it's come from me (the email tells them that they must update their information). There is a link in the email which, when clicked, opens up 2 windows: my site in the background and a small window on top with form. This forms asks the customer to submit sensitive information. Is there any script I can use to close down other windows when my site is opened? I can't think of any other quick solution at the moment.
I have a simple form connecting to an Access database where users log in, fill out the form, and submit. Everything works fine.
However, sometimes it takes a user 20 minutes or more to fill out the form. When the user then hits "submit" he is given the login page instead of the response page I have built in. If the user fills the form out in less than 20 minutes or so, it works fine.
I have Session.Timeout=720 (2 hours) but this hasn't changed anything.
Does anyone know what I'm missing? I'm pretty new at asp so forgive me if it's something simple.
I'm trying to strip out none alphanumeric characters (and a couple of punctuation marks) from a string before inserting into a database.
I've put in my code below, basically I thought I'd loop through each character in turn and pass it through a regular expression to check its validity. If it passes I'll add it to a global variable ('validString') if it fails I'll remove it.
But I can't get my Mid() function to accept 'i' as a value so it won't loop. Code:
Since The recordset paging didn't work as I had posted in my previous thread, I decided to look for a new sample code on paging. Thank God it worked. But I'm trying to figure out what to write in the page links: Code:
If Trim(Request.QueryString("id")) <> "" Then myarray = split(id," ") whereclause=" id = " & myarray(0) for counter=1 to ubound(myarray) whereclause = whereclause & " OR id = " & myarray(counter) next SQL = SQL & whereclause iCounter = iCounter + 1 End If It gives this error: [quote] SELECT * FROM bible WHERE id = 1, OR id = 2
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC Microsoft Access Driver] Syntax error (comma) in query expression 'id = 1, OR id = 2'. [QUOTE]
I am trying to post some data from the database to an XML file. Everything works except for a stray comma that comes from the database and exists at the end of the address string. For example, "123 Anywhere Street,"
I would like to kill that comma that will always exist at the end of the address string.
I have a string that can be "700,00" or "700" or "700,56". How can I obtain the content that is present after the comma, (as the examples, 00 , , 56. in a var?
I have an Email List where it shows all emails sperated by a comma and space. I want to insert a CHR(10) after each comma to make the list easier to read (in a textbox). How can I do it?
I was wanting to know how to take the following code and use it to update multiple fields "sel" is a value set from a table field onto a checkbox. It returns a 3 digit number if submitted with only one check.
but if I submit multiple check, of course, it submits multiple 3 digit numbers seperated by a comma. I just need to know how to do a for(i) statement or a loop or whatever so that I can update multiple fields.
<% If Request("Movebutton") <> "" then
Updsel = Request.Form("sel") Upddate = Request.Form("Start_Date") If Request.Form("End_Date") = "" then Updenddate = Request.Form("Start_Date") Else Updenddate = Request.Form("End_Date") End If
What's the easiest way to generate CSV or a comma delimited file from an ASP recordset? I've seen a few searching the internet and they appear to be overkill or out of date.
Whenever I import a comma delimited file the field lengths are always 255. I tried an import specification in my code but they were stll 255 in length. I imported about 156 fields and about 140 came in at 255. Not gonna work.
I have a post-form that holds a listbox with mulitple selected items. When the form is posted to the server ASP file, I want to loop through the selected items, to insert each of them into a table. How do I do that? If I execute the line: Response.Write(Request.Form("ListBox")), I get the list of selected values, separated by commas.
I have form where one has to input officer's salary along with other data. The officer's salary field is tied to a currency field in backend Access. Right now folks enter numbers e.g. 30000.00. However, when someone is writing 30,000.00 a error message comes which shows syntax error. The sql statement via response.write does not allow me to update the database. However, without the comma, things are fine. Is there any way to create a error message, which will not allow one to save the record, if comma is put in the salary value e.g. 40,000.00?
i am trying to run a asp sql query containging many tables. the main table though is a simple ID based table contains all ids from the other tables. Code:
How can I populate the results of a recordset into a comma delimited?
The recordset is only returning a sequence of ID's (one column - one dimension). I was trying the getRows and getString method. If the result was only one record it was okay, but for more than one result I was getting an unhandled data type error.
I would just like to place the values from the recordset into a comma-delimited list and then pass that into a javascript function?
I have a problem to creating one of my pages which is in ASP. wish someone can help me with this problem.
well, I have a dropdown box which allows multiple selection. and this is in the form that send the values of the selected options in dropdown box (which the values are numeric) to the access database.
all of the proccess in send to database is ok and all of the selected values in the datafield on database is seperated with comma like this: Code:
I have a sort of shopping cart im developing. I have a string named "mystring". mystring = "spices,tomatoes,clovers,watermelons" I want to delete clovers and the comma.
So newstring = "spices,tomatoes,watermelons" I was wondering what method I could use to convert "mystring" to "newstring", and the newstring won't have the clovers or the comma.
I have a database with a field called test which holds the value 1,2 (1 comma 2). The value has been added through a checkbox. Now I want to write an SQL statement that SELECTS both the value 1 and 2. If test had the values 1 and 2 in seperetaed fileds I would write something like:
SELECT * FROM X WHERE test = '1' OR test ='2'
But how can I do this when there is a comma? I want to know how I can check if the value test has the value 1 or value 2 directly in the SQL statment. Is this possible?
Maybe the only soloution is to retrive the values from test and then split them into two variables and then to the value check later in the code?
I have written an ASP script that collects information from a form. The info is stored in one variable name. When I request the info, it is returned as a comma delimited string. How can I manipulate this string so the data can be stored in a database? I appreciate your assistance.
I have an Access database which contains a Table of Books, and in that table their a field called 'KeyWords' which is a comma separated list of keywords.
I've been asked to develop a semi-automated type situation where we have a database table (sql server) and periodically, there will be a comma delimited file from which we need to import the data, replacing the old.
I naurally know that we can use [truncate tablename] to kill the other data, but does anyone have any examples of importing a comma delimited file into SQL Server with ASP?
I've never been able to get my head round arrays, and despite expensive googling I can't work out how to sort this problem:
I have a simple shopping cart that attaches a stock ID number and a quantity to a session variable. Each item selected is added to the session("cart") as "ID.Quantity" and divided by a comma. Thus the string is "12.7,3.45,8.9" etc.
Can anyone show me how to turn this into a two dimensional array, so I can get the relevant records for each ID from my database and match it to the number requested? Splitting the string by comma and then by full-stop has beaten me.
Is it possible to have a search page that queries a sql database and then writes the results to a comma-delimited text file instead of displaying the results.
I have no problem creating the search page and displaying the results I just don't know how to create the comma-delimited text file from the recordset results.
I have a sql server 2000 table with a comma delimited list of ids. there is a seperate lookup table with a desc for each id.
I need for this data to be retuned in the same order in which the data was entered into the database. right now it is returning ordered by the id from the lutable.