Prevent Unwanted Comma

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?

View Replies


ADVERTISEMENT

Unwanted Comma

I'm testing the output of variables passed from my 1st ASP to my 2nd ASP. Code:

View Replies View Related

Unwanted Refresh

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.

View Replies View Related

Unwanted Characters In CSV

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.

View Replies View Related

Closing Unwanted Pop Ups

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.

View Replies View Related

Unwanted Session Timeout

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.

View Replies View Related

Stripping Out Unwanted Characters From A String

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:

View Replies View Related

How To Filter Out Unwanted Selection In Rs Paging Link

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:

View Replies View Related

How To Get Rid Of This Comma

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]

How do you get rid of this comma?

View Replies View Related

Add A Comma

how would i add a comma in the value of a x? i'll give you an example:

given
x = "123"

result:
x = "1,2,3," .

View Replies View Related

Dropping A Comma

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.

My initial thoughts:

oldaddr = request.form(business_address)
vbl = len(address) - 1
newaddr = left(oldaddr, vbl)

I tell it to do response.write on all variables involved, but for some reason the calculation is not being performed. No errors. What am I missing?

View Replies View Related

Comma Values

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?

View Replies View Related

Insert A CHR(10) After A Comma

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?

View Replies View Related

Comma Comands

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

View Replies View Related

Generate CSV Or Comma Delimited

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.

View Replies View Related

How Do I Test To See If A Comma Is Present ?

I am using this code below to count the number of variables after the comma:

jumvar = 43352352,325324452,235234452,24523454
jumvarsplt = split(jumvar,",")
valnum = CInt(ubound(jumvarsplt))

But i would like to know how to test if the variable has a comma before running the above code.

View Replies View Related

Comma Delimited Files

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.

View Replies View Related

Comma-separated List

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.

View Replies View Related

Hanlding Comma In A Field

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?

View Replies View Related

Comma Delimited Array

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:

View Replies View Related

Comma Delimited List

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?

View Replies View Related

Comma Seperated Numbers

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:

View Replies View Related

I Want To Delete Clovers And The Comma

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.

View Replies View Related

SQL WHERE Statement That Retrives Value Seperated By 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?

View Replies View Related

ASP: Trying To Manipulate A Comma Delimited String

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.

View Replies View Related

Searching A Comma Separated List

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.

View Replies View Related

Importing Comma Delimited File

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?

View Replies View Related

Turning A Comma Delineated String Into An Array

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.

View Replies View Related

Create Comma-delimited File From .asp Recordset

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.

View Replies View Related

Comma Delimited List & Lookup Table

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.

View Replies View Related

Regular Expression :: Split By Comma (CSV File)

I have a sting that have to be split by comma (cvs file)

Let me give you an example:

this is my string:
asd,asd,asd,"asd,asd,asd",asd,asd

I have to split this string but the string that is in quote I dont whant to be splited

result have to be like that:

Array(
[0]=>asd
[1]=>asd
[2]=>asd
[3]=>"asd,asd,asd"
[4]=>asd
[5]=>asd
)

View Replies View Related

Form To Comma Delimited Text File

how to create a comma delimited text file from an asp form. Assume my fields are: Name, email, phone number.

View Replies View Related

Populate A Select List From A Comma Delimited Txt File

I would like to use ASP to populate a select list from a comma delimited txt file.....

View Replies View Related







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