Iterate Through Numbers And Form A Loop

i have an sms phone book that allows users to send multiple sms from the internet to a cell phone.

However when a users chooses to send bulk, it inserts the numbers into a textfield box seperated by commas. Which are in turn passed to the server side to be sent.

PROBLEM
Now i would want to seperate each number and loop through them e.g

numbers could be : Note they are seperated by comma

2865843275,253245234,254235432,4325432542,2452345234

1. on the server side i would like to loop though each number and assign to a variable

2. Count the number of phone numbers and assign a variable total_numbers to it.

e.g. something like this

for each
a = phone_variable
next

HOw do i achieve this ?

View Replies


ADVERTISEMENT

Automatically Iterate Through Form Data

Is there any way to access form data in an automatic sense? For some reason, I thought you could access form elements by request.form(0) and it would give you the first form element, but that doesn't work.

My problem is that I have a dynamically generated from (to the point where fields change depending on DB data) and I need to access both the name of the form object, and the data in the object dynamically. I thought there was a way to do this, but w3schools.com doesn't have anything like that listed for the request or request.form object.

View Replies View Related

Iterate Through Nodeset Without For Each

I have 2 nodesets, the first is looped through to give a row name to a table, the second contains the data:

Set names = xmlDoc.selectNodes("/data/categories/category")
Set data= xmlDoc.selectNodes("/data/dataset[@year='2006-07']/set")

z=0
For Each name In names
Response.write(... td with name in.....)
Response.Write(...td with data.selectSingleNode(".[z]/@value").text)
z=z+1

Next
this is roughly what i want to do, but i cant get the data to work (Object doesn't support this property or method: 'selectSingleNode' )

is this possible?

View Replies View Related

Loop Form - Extract Display 'value' As Well As Form Value?

While I can extract the option value from the following:

<Select name='Keystring' MULTIPLE>
<option value='1' name='status'>Pending</option>
.....
</select>

I cannot seem to extract the corresponding 'display' value when I do a
For...Next Loop:

for each keystring in Request.Form("Keystring")

keystring=request("keystring")

Next

How do I aslo get hold of that 'display' value eg 'Pending'...is it
possible?

View Replies View Related

How To Reference A Form Name In A For Loop

I've been struggleing with this chunk of code:

for j = 1 to totalManagers2
Response.Write("# in J loop:" & j & "<br/>")
If Request.Form("j") = "on" Then
myToField = myToField + recipiant(j)
Response.Write("recipiant's email is :" & recipiant(j) & "<br/>")
validRecipiant = true
End if
next


My problem lies with line ' "If Request.Form("j") = "on" Then '...

Now on the first page, I have a form, which I dynamically populate a table, and for each row, I output an HTML checkbox. I assign the name of that check box to a # that is incremented within the for-loop that is outputting all the HTML table rows.

So I have check boxes with name attributes such as "1", "2", "3", "4" and so on.

My question is, on the next page, how do I tell if those check boxes are checked? I use the Request.Form("1"), Request.Form("2"), Request.Form("3"), Request.Form("4") and so on.

But as you can see, in my For-Loop, I'm just checking this...
Request.Form(1), Request.Form(2)...and so on ....

So I am ignoring the quotation marks...how can I include them so the code knows to look at the form for the name attribute of "1" and not just 1?

View Replies View Related

How To Loop Through More Form Fields?

I have about 30 worker names (and their IDs in hidden fields) in one form, beside each worker I have a dropdown list with same items. When I select an item from dropdown list its ID is written in another hidden field. I want to submit values from hidden fields into another .asp page and sql db. If I use :

<%
FOR EACH name IN Request.Form
Response.Write("<BR>")
Response.Write(Request.Form(name))
NEXT
%>

I get only values from dropdown lists IDs. how to loop through all fields and get IDs of workers, too.

View Replies View Related

Loop Form Variables

I have a form that loops through a recordst for the following Code:

View Replies View Related

Form Creation Using Loop

I am trying to build a dynamic form based on user input.

Here is the story i want a user to select how many times he/she wants to add a product and then depending on the number selected draw x number of input boxes for product name,price etc.

Then pass this to another page, store in an array and add all this to a database!

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

Loop Through Form Fields To Set Cookies

I have a table in which I count the rows, and for each record it finds it uses that number to dynamically name the form field. i.e.

<input type=text name="FirstName<%=i%>">

I got that to work just fine. What I'm trying to do now, is post the form, and on the new page dynamically create cookies based on the number of form fields there are. For example, my desired end result would look something like this..

response.cookies("First0")=request.form("FirstName0")
response.cookies("First1")=request.form("FirstName1")

and so on. Is there a way to do this by looping, instead of hardcoding? I have my feeble attempt below....

View Replies View Related

Dynamically Loop Through All Request.Form Values

How at the start of script can I dynamically loop through all Request.form variables and use them ? either name or the value, both is the ideal though.

example.

have a form:

2 textfields. named "text1" and "text2"

In asp I need to dynamically grab this data not knowing that this form had the textfields "text1" and "text2".

ideal print:

name "text1"
value of text 1

name "text2"
value of text2

View Replies View Related

Build DB Insert Statement Dynamically - Loop Form Elements

When you submit the form you can see I am trying to get the each row of the form elements into a format such that I can build multiple insert statements. Here is what I am working with:

<%
Dim x
For x = 1 to Request.Form.Count
Response.Write Request.Form.Item(x)
Next

Would I use some type of Mod operator on the value of x to determine my line breaks?

View Replies View Related

English Numbers Into Arabic Numbers

I'm working on asp project, access 2000 at backend.I can write arabic text and arabic
numbers in textbox and save them in database.but if i see these records, arabic text and arabic numbers,it is ok,if my computer is arabicenable.

If my computer is not arabic enable then it show arabic number into english numbers.
how can i show arabic numbers instead of english numbers if my computer is not arabic
enable.i'm working on a project i have to complete it.How can i convert english numbers that are coming from database and convert that numbers in arabic for show.

I have use

<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
I shall be very thankful to you for this purpose.

View Replies View Related

Parameter Not Passed From For Loop To While Loop

I'm trying to pass a parameter from a for loop to the nested while loop
but only the first counter is passed. Here is the code:

View Replies View Related

Nesting One Loop Within Another, Using 1st Loop As Criteria For 2nd

I have a recordset that I loop through all of the data within a table, within the same loop, I am trying to add another loops that pulls information from the first recordset to base the second recordset off of: Code:

View Replies View Related

Getting Two Numbers

Just started learning ASP about ten minutes ago.
Currently experimenting with forms.
could someone please tell me what is wrong with this code:Code:

<%
Resonse.Write Request.Form("myform") + Request.Form("myform2") & "<br />"
%>

Im trying to get two numbers to add together from a form.
I get this error when i use that code:
Quote: Microsoft VBScript runtime error '800a01a8'

Object required: ''

/Jaynesh/asptest.asp, line 14

View Replies View Related

Even Numbers

how can i check if a variable is an even number

View Replies View Related

Add Two Numbers

i want to add two numbers in server script with VB script. how to do it.

View Replies View Related

Add Numbers Using Checkboxes

I Have this form in page1:

<form method="post" action="page2.asp">
<input type="checkbox" name="numb" value="10">
<input type="checkbox" name="numb" value="20">
<input type="checkbox" name="numb" value="30">
<input type="checkbox" name="numb" value="40">
</form>

Now what I want is to add the checked values in page2.

For example :

if checkbox1 and checkbox3 gets checked I want to add the values in the
checkboxes which in this case is 10 + 30 and get the total sum (40).
Hope this makes sense?

So how do I retrive the checked values and then add the checked values
with eachother to get the total?

View Replies View Related

Ordering Numbers?

i need to oredr a set of numbers. the numbers are "06/9","95/1","95/6","06/3" and so on. the thing is that these need to be ordered form the second number, so it shoudl be ordered thus: "95/1","06/3","95/6","06/9". how can i do this? at the moment just as an attempt im splitting the number either side of the "/" like this:

var regNo = "12/09"
var yearStart = 0
var yearEnd = regNo.indexOf("/")
var year = regNo.substring(yearStart, yearEnd)
var itemStart = regNo.indexOf("/") + 1
var itemEnd = regNo.length
var itemNo = regNo.substring(itemStart, itemEnd)

but where do i go form here?

View Replies View Related

Trim Numbers

I am converting bites to Megabytes in an operation. How would I trim the result to only go to 2 decimal places?ex:

Response.Write(file.FileName & " (" & (file.Size/1048576) & "Mb)<BR>")

View Replies View Related

Check This Numbers

i know how to code it in javascript but failed to do it in asp. there are 12 digits of number. exmple like this 871205106599. i want to check every single digit when user clicks Submit button.

View Replies View Related

Round Numbers To 0

I want to round numbers to include a 0 at the end.

response.write "<td bgcolor=white align=center class=menuText>" & 100 - Round(CTASCAvail,2) & "%</td>"
response.write "<td bgcolor=white align=center class=menuText>" & 100 - Round(Avail,2) & "%</td>"

the following code will round the numbers 2 decimal places but if it is a 0 it will not display it.

View Replies View Related

Addition Of Two Numbers

how to add two numbers from two different textboxes and display it in the third box.

View Replies View Related

Ensure Only Numbers

I believe this is possible using Regular Expressions (which I have never used), but I am unsure of any other way to do it.
Either method would be acceptable for me - I need to learn how to use Regular Expressions some day
How do you ensure that only numbers are entered into an input field.
I need to know this for things like postcodes, phone numbers etc. and a few other things and I've never come across an easy way to do it

View Replies View Related

Encrypt Numbers

Can RSA encrypt a sequence of numbers and letters intermingled together.
I was told that RSA can only encrypt letters,i'm not so sure. So can it bge done

View Replies View Related

Listing Numbers

I have 2 textboxes - "from" & "to".

Assume I enter number 1 in "from" and 10 in "to" - I want the ASP to return:
1,2,3,4,5,6,7,8,9,10 and insert this into an Access database over 10 rows
into the 'number' field.

Anyone got any ideas how to do this?

View Replies View Related

Adding All Numbers

regarding adding or getting sum all of the numbers in the database fields
example of the Fields:

Totay_Payment
10.00
20.00
30.00
40.00

My problem is i cant display the exact SUM of all numbers and it goes like this 10.0020.0030.0040.00 and i want the exact sum like this 100.00

heres the example of my script :

inTotalPayment = rsSumNumber("Total_Payment")
Do While Not rsSumNumber.EOF
intSum = intSum + intTotalPayment
rsSumNumber.MoveNext
Loop
Response.Write(intsum)

View Replies View Related

Random Numbers

I have a problem creating random numbers. I basically have this

Randomize()
iRandom = Int(10 * Rnd + 1)

If I do not wait a few sec before hitting the page again it will create the same random number as generated a few seconds before.Any idea why it is like that? Another way to reprocess the "bug" is to just fit F5 few times in a row and you end up with the same number being generated. Its annoying and I need some help to "fix" it!

View Replies View Related

Random Numbers In C#

I am trying to generate a random number between 1 and 100 into a label, using c#....

View Replies View Related

Regexing Through Numbers?

In our database I have various phone numbers, and they could start with 082
/ 083 / 084 / 072 / 073 / 074. How do I check any of these and change them
to 2782 / 2783 / 2784 / etc etc?

View Replies View Related

Version Numbers

I've got an ASP app. This app is deployed to two seperate Windows NT machines which I believed were the same. Unfortunately, the app works on one PC, but on the other I get some EOleExceptions from the COM object I use with the page.

Does anyone know how I can check versions numbers of things like what ASP engine I am running (if there is such thing), version numbers etc. etc.

I'm just looking for anyway of telling what the difference is between the two PC's.
P.s. I know this isn't really a 100% ASP based question, but I thought I would get a fast answer on the ASP board.

View Replies View Related

Split Numbers!

The number '60' can be written as (50+10) or (25+35) or (15+45) or (7+53) etc... but I want the output as (50+10) only when 60 is typed in a textbox & the Form is submitted. How do I do this?

View Replies View Related







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