I'm trying to make an array of strings to compare to. Each string will be made up of 3 different 4 digit codes with spaces in between each code (ie "1001 2003 3001").
I'm currently using this code to do this but when I write the string out to the screen I only get the <br>. Code:
In working with arrays, I have found that I am unable to dimension and array with a variable that has an integer value but I can redimension one this way. I haven't see any information that tells me if this is a requirement, although it appears to be because I get an error if I try it.
Ex.
Dim b b = 10 Dim a(b) ' this errors out but Dim a() ' this Redim a(b) ' works
I have an array, PositionArray(), which contains a variable number of integers. I need to sort these array elements numerically. Seems I've done this before in VB, but I can't seem to get my mind around it now. Does anyone have a simple bubble-sort code, or is there an ASP way to do this?
My ultimate goal is to take a chunk of text, and highlight (bold, color, whatever) words that are contained in a string array. My thought is to find the position of each word with the InStr() function, then find out which position occurs 1st, which position occurs 2nd, etc., then build a string from the beginning of the text chunk to the position where the first word begins, add a bold tag, add the word, add a </B> tag, and continue until the end of the chunk.
i need to use bigger numbers that integer allows in asp. what should i use? i still need the whole number quality of the integer, but when i use anything larger than about ,100,000,000 i get the error Overflow: '[number: xxxxxxxxxxx]'
with the x's being the number i used. anyway around this?
I have two arrays that contain integers and I would like to add them, say array1(0)=1 and array2(0)=1. If I just do something like array1(0) = array1(0) + array2(0) I end up getting 11. How can I make it add the appropriate integers?
I need to multiply a price by a quantity. I'm using the following:
intTotal = (int(strPrice) * int(strQuantity)) strPrice contains the value 20.80 and strQuantity contains the value 10 It gives me a total of $200 when it should be $208. Why does it discard the .80 cents in the multiplication? What can I do to fix it?
I have developed this script that is meant to take in a value from a database record add one to it and post the new number in the record. It works ok but it always seems to read all database records as 0 never as thier true number (i have tried it set to 1,2,3 etc)
For an upcoming test I need to write an explanation of the code on connecting to a databse through a webpage. I wrote the code and the page works, but could someone help me explain this line of code: SET myConn=SERVER.createobject("adodb.connection")
how can i identify the user session?and, assuming that i generate my own "session id" for each login carrying it along the requests.how can i, latter, release the session ?
remember that Session_OnEnd( ) don't work well all the time.
i have made a form which passes info from it into a asp page which sends the data to a db, the form has all the relevant details about the student, and also it has username and password which gets sent to the "login" table this table holds the usernames and password.
i want to make a form with username and password that the student can enter his username and password and then if its correct it allows him to pass.how would i do this.
i have a form that submits courses to a database on a server, the form has fields like course name startdate, that kind of thing, i want to be able to create a search form that will bring up courses that are in a certain area, or a certain price, how can i get the info the user has put in the form and then search with those criteria.
if I make an rss feed from my site and put the address into IE, it just flashes and nothing happens. However, if I go to another browser, nothing much happens, but I can view the source and it's proper.
I then copy that source into a whatever.xml file and then upload it. Put that address into IE - and it looks like every other .xml file. The rss feed does validate as well. So - here's my q: is there any way to get this to show in a friendly manner if clicked on? I'd like to just provide the link to the rss file on my site for people to use (without having to provide instruction of what's inside it).
We have two servers running ASP.NET systems. One is live and one is development. I have recently adopted an ASP system from a colleague to nurse it back to health. On the development server it correctly interprets dates as being british i.e. dd/mm/yyyy, but on the live server it reverts to the usa format i.e. mm/dd/yy.
Both systems have the appropriate session variable set i.e. Session.LCID = 2057. Both servers have IIS set up in exectly the same way and I'm not in any way sure that IIS has a say over this in any case.
I already have a skeleton to work off of but this is for a dynamic site. Each page has it's fields in a DB which I will use to search through but my problem has to do with how the system will treat queries.
The site has to do with dairy. How do I proceed to process "the CDC's regulations"...
I'm thinking tokenizing but I don't want the site to search each token individually since it'll bring up each page that contains CDC which can be quite substantial.
I have a folder where i just want to read back images. This works fine until the computer self creates a folder called _notes and this messes up my results.
one how do i just get it to return all images and nothing else, ie none of the subfolders or any other files and second can i stop the self creation of the file? Code:
so for this weeks project for class I have to create a dynamic page in asp. As of now im completely lost and failing.I was finally able to setup IIS and get everything going. I made a page in asp saying "Hello World". Now the question is what exactly do I need to do to make a dynmaic page in asp? Im assuming he wants me to create a database in say access and pull it up in asp.
Does anyone have a simple database in access they can post a link to so I can download it and also a link to the asp code to display it properly on a page? I want to take a look at the code and see if looking at it I can gain a better understanding of what to do and how asp can help make dynamic pages.
I need to make a form in which if the user selects 'NO' on a radiobutton, that the form will take him 4 or 5 questions down...and if possible maybe disable the ones it skipped?
I would like to do some checking on user input when he/she submit the form.
Eg: Fistname: BBB 'error Lastname: bbb 'correct
If there happens to be error on the user input (eg. user input in uppercase), it will go back to the form and list the errors.
For those error input, their respective textbox will be cleared for user to re-enter again. For those which is correct, the user input is displayed in the textbox (remained unchange). Code:
How do I make form fields required if I'm using a formmail.asp script? Also can I customize the page that visitors are sent to that tells them "you forgot to fill out this part..blah blah blah" ,and if so, how is it done?
i have an uploadpage where users can upload images. When the image is uploaded my logo is added with aspimage.
the file hasnt been saved before i try loading it with aspimage. How can i make the browser wait 2 secs before executing the next piece of code, to allow the file to be saved properly before trying to access it again ?
I'm using the replace functions but it is case sensitive. I'm doing a search through my DB and I want the keywords I use in the query to come out in bold so basically I do a: Code:
strResults = searchRS("pgdescription") for j = 0 to (Ubound(newArray)) strResults = replace(strResults, newArray(j), "<strong>" & newArray(j) & "</strong>") next
it spits out my results but it doesn't bold them unless they're the exact same case... Anyone know a way to make the replace function ignore cases?
I am putting the thread details into the Thread_Table table, and so creating a new record in that table. THen I need to create a new post in the Post_Table, and need to pass it the ThreadID that I just created in the Thread_Table. Code:
I'm trying to get the syntax for making a field required and also to validate a field I'm using CDONTS to send my asp thru an IIS.
The from is = to stremail and stremail is = to email address field in my code I want to make the email address field an required field I also want it to validate the field for at least an @ symbol and an "." inside the email address field.