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 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 have a text file that has two lines in it, the first line gives item labels, my second line gives values for those labels. I would like to use ASP to present this data on a web page. I also want the page to reload every 10 seconds so that any updates to the text file would be relfected on the web page.
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 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.
how do I parse a textbox of text separated by carriage returns?
I have a web form with a textbox, when the user presses submit I would like to process the text in the textbox line by line. How can I iterate through it line by line and do something on each line of text?
I have a log file from my email software program. Each entry is on a line and the values are seperated by tabs. How can I read through this text file such that I insert its contents into a database? Thanks. Tom
Here is one entry from that file:
11/30/06 00:00:21SMTP-IN25AA24076F2041D7B35E97EE7748D06C.MAI65284.244.91.208EHLOEHLO [84.244.91.208]250-home [84.244.91.208], this server offers 4 extensions11922
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
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?
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 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:
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'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?
How can i list out all the email address into my website from the hotmail caontact list? i am successful log in into the yahoo contact list by using serverxmlhttp and list out all the email address from the page source, but i could not access to hotmail by using the serverxmlhttp. Is any other methos can list out the email address from hotmail contact list?
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 am trying to execute the following SQL Statement:
SqlApp1 = "INSERT INTO LeagueStore (Team, Played, Wins, Loses, Draws, For, Against, Points) SELECT (Team, Played, Wins, Loses, Draws, For, Against, Points) from HomeWins WHERE postponed=''"
But i am getting the following error message:
Syntax error (comma) in query expression '(Team, Played, Wins, Loses, Draws, For, Against, Points)'.
And i dont know why. All of the fields are numerical apart from TEAM is that helps.
All i want to do is Insert data from one table into another but i cant use SELECT * because one table has one extra field to the other and when i tried to amend the SQL to look like this:
SqlApp1 = "INSERT INTO LeagueStore (Team, Played, Wins, Loses, Draws, For, Against, Points) SELECT * from HomeWins WHERE postponed=''"
i get this error:
Number of query values and destination fields are not the same
I had developed a messageboard in asp which allows users to post new messages,reply to existing messages.I am using textarea (Html tag) for a messagebox in my asp page .When the user enters any characters in messagebox except a single quote ('),the message gets inserted in oracle database without any problem.But if message contains single quotes (') , while inserting in a database it gives the following error
"Microsoft OLE DB Provider for Oracle error '80040e14' ORA-00917: missing comma ".
Is there any solution to insert messages containing single quotes in a database?