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


ADVERTISEMENT

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

ASP Trim()

i'm having some trouble with the trim function. I have a date 04/18/1982. I want enter the value 1982-04 into the database. The code i'm using is:

strEXPDT = replace(right(left(request.form("Expiration_Date")2)4),"'","''")

View Replies View Related

Trim

I am constantly in need of help, I am back again. I am slowly, slowly getting my page to work. Here is the latest of my queries. I want to automatically make a username by trimming the first character of the first name and taking the entire last name, and putting it in strUserName, I am a little iffy about TRIM (what else is new) rofl. Anyway the user name I want to take the first 3 characters from postal/zip code and the first three numbers from phone number and make the password. Here is what I am thinking of course it doesn't work. BIG SURPRISE!!!

strUserId = Trim(RS("FName"),1) & RS("LName")
strPassword = Trim(RS("PCode"),3) & Trim(RS("Phone"),3)

View Replies View Related

Using Replace And Trim Together

This should not be this tough but I may be thinking too hard about it.
Here's what I have:

thenames="charles,sam,chris,"

How do I do remove the last comma? I tried using trim and replace
together but couldn't get it.

View Replies View Related

ASP Trim Function?

I'm creating a website that will have a page that lists current news
items. The news items will be stored in a SQL Server database and will
have basically two fields, the date and the news blurb . . . On the
main page of the site, I want to have a box that shows "Current News"
and only pulls the first 7 or so words from the news blurb followed by
a ... [more] where [more] is a link to the current news page.

For example, the database entry may be something like this: Code:

View Replies View Related

Trim String

How do i cut the last 4 characters in a string?
I know how to cut the 4 first, but i need to cut the last!
I have a image name like testimage.gif and I want to cut away .

View Replies View Related

Trim Leading

I have a textarea, that when you insert your cursor into it anywhere except for in the very first line, the cursor falls into the second line. When the form is submitted there is a carriage return at the beginning of the text that I'm having trouble getting rid of.

I tried to Trim() the string both before inserting it into the database and when writing it to the page, but apparently that doesn't strip off carriage returns (even though I've read it does.)

View Replies View Related

ASP Trim Function

i need to use the trim function trim("str","?"). How do i remove the "return sign" from a string?

View Replies View Related

Trim Text

how to use ltrim, rtrim to trim the beginning and end of text entries for extra spaces. I was wondering if there is a way to trim extra spaces from WITHIN a text entry.

Example:

change
John and Linda
to
John and Linda

View Replies View Related

Trim Function

I need to select records from table where right part of Field1 = strTest

the table looks like:

Field 1 Field2 Field3
5159-10 2 3
5159-20 6 9
LS5598-20 8 9

strTest=5159 or LS5598 doesn't matter

should be something like "select Field1 from tabTest where " & Right(Field1, 3) & " like " & strTest & "

Obviously I'm wrong somewhere, could anyone tell me where?

View Replies View Related

Trim Whitespace

does anyone know if it's possible to crop whitespace regions from around the edges of an image using Imagemagick?

I have a whole bunch of signature images (as in, people's handwritten signatures) and I'd like to crop them so that there's no whitespace margin around them. I can do the cropping fine, it's just detecting the color regions.

View Replies View Related

Trim All Characters After The First "

I need to do is remove ALL characters after and inc the characters "." found in a variable. i have a variable which holds device with DNS name such as E096064-FWSM2.netdevice.companyname.com

i want the variable to just hold the name E096064-FWSM2 the extension after the first "." can very greatly so i can not specify all possible options as i just do not know what they are going to be.

View Replies View Related

Trim Return Caracter

I make a csv file with values from data base fields . If my value contains a carriage return caracter at the end, a new line is created in my csv file. I tried to replace chr(13) caracter by an empty caracter but it doesn't work, my code is:

Replace(Trim(element.value), chr(13),"")

Do you have any idea to resolve my problem?

View Replies View Related

Trim() Doesn't Work

I cannot figure out why this won't work, but I cannot get the trim() function to work for me. I tried this test code just to see if I could get anything:Code:

<%
String = "This is a string"
response.write String & "<br>"
Trimmed = Trim(String)
response.write Trimmed

And the results are both the same.This is a string.
Can anyone think of any good reason the Trim statement wouldn't be working I cannot think of any other common ASP function that isn't working for me.

View Replies View Related

Trim Request.Form

its ok to use just

Trim(Request.Form("txtFromName"))

or to use both
rTrim(ltrim(Request.Form("txtFromName")))

View Replies View Related

Trim String And Indexing Server

Ok, I have this code:

For i = startCt To endCt
' Get the document title. If it's blank, set it to "Untitled".
Dim docTitle,path,desc
Dim tObj
Set tObj = results1(i)
docTitle = tObj("title")
path = tObj("vpath")
desc = tObj("desc")
.......

Now, results1 comes from the ms indexing server.

Problem with some of the results is the title is an empty string, so no link.

If I query the catalog in comp mgnmt, no problems.

So, indexing problem or something else.

I can use the path and get the doc name there if empty.

Also, does asp have a string.trim like .net? ....

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

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







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