Norwegian Letters
We need to integrate an RSS feed in a webpage using ASP.
I've been testing out the great script at ByteScout:
http://bytescout.com/how_to_display_rss_using_asp.html
It worked very well, but I couldn't make it work with feeds using Norwegian characters (æ, ø, å), e.g. Aftenposten:
www.aftenposten.no/eksport/rss-1_0/
The script simply crashed.
View Replies
ADVERTISEMENT
I am creating a search function for my website and after som initial problems it is now working, well almost.It will not return any results if I use norwegian characters like æ, ø and å - also in uppercase Æ, Ø and Å.
View Replies
View Related
I have a database which contain a field with multiple keywords. I have also created a search functionality in ASP and when searching the database I get the output I am looking for.
EXCEPT when doing a search using norwegian characters like æ, ø and å, also uppercase Æ, Ø and Å. The field in the database has these keywords I am searching for.
Does anyone have any ideas on how to get this to work??
I have tried replace(strSearch, "æ", "æ") and a number of other things but nothing works. I am sure there is a way to do this.
View Replies
View Related
i have a variable which holds a name like this
strname="john jones"
I want to change it to
strname="John Jones"
I want to make the first letter captital
here is my code
strname = (UCase(Left(strname,1)) + UCase(Right(strname,LEN(strname) - 1)))
it makes the whole string as capital
any idea what i am doing wrong.
View Replies
View Related
is there any command to get first X letters from a variable ? For example if variable is SOMEWORD and i want to get first three letters of this varible the command will return SOM ...
View Replies
View Related
how do i take the four last letters of any given form input? for example hello.asp
i want a function that will give me .asp
View Replies
View Related
I want to limit a teaser-text to 100 letters and don't want to cut in the middle of a word. it should look like:
the quick brown fox jumps over the lazy....
and not:
the quick brown fox jumps over the la...
View Replies
View Related
I have a code to create a random string of letters. The number of them can be whatever I desire.
what i would like to do, is have it both letters and integers. how would inmodify this code to allow that ....
View Replies
View Related
Not sure if this is an ASP or HTML question, but is it possible to force a field within a form to only allow CAPITAL Letters? If so, would anyone be able to provide the generic code. I've checked elsewhere but have been unable to find.
View Replies
View Related
How do I change this output to give me numbers instead of letters: Code:
Dim intCounter, intDecimal, strTicket
For intCounter = 1 To 6
Randomize
intDecimal = Int((26 * Rnd) + 1) + 64
strTicket = strTicket & Chr(intDecimal)...
View Replies
View Related
I have a DB containing many records of customers' info. How can I pull these data to the MS Word mail merge letters containing the header (name, address, etc) and contents (description 1, 2, 3,...) page by page per record?
View Replies
View Related
how-to do a confirm textbox to match letters in an image in ASP. Code:
View Replies
View Related
i am using an online html editor to retrieve value from the database. i then make a few letters as bold and few in red colors. i now want to know can i save such words saved in different colors go into the database ms access??? can it be achieved. has anyone faced such issue before?
View Replies
View Related
How can I correct an address if the user forgets a space between the number and street name? For example, "1600Main Street" would be corrected to "1600 Main Street".
Is there a way to go step by step from the left and enter a space if I hit a letter or stop if I hit a space?
View Replies
View Related
what i want to do is to put 2 fields in my table , username and password
what iwant to do is to create a page that ask you to unter your username only ,and when u click submit the other page will add new record for the username u enter and will input a randomly alpha(letters and numbers) to yr password field , so how can do this random thing throw the asp"!?!
View Replies
View Related
I need a function for blocking or converting letters inserted into a Form to digits, since the Data will be used in mathematical functions.
Is there a specific seach-function for letters, or:
If Input1(not a digit) then...
Else... Input1 * 5...
?
View Replies
View Related
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
I have a variable which holds college names
strcollege="University of California"
i want a variable to save UoC
what i meant was there are 3 words University of California
so i want the first letter in each word to be stored in a variable ....
View Replies
View Related