Hi All, I've made this ASP page which will take the form data and check specific TABLES for existence of record. If either data exist it will set the Final...
Hi All, I've made this ASP page which will take the form data and check specific TABLES for existence of record. If either data exist it will set the Final...
You don't open a recordset object when useing an insert query. So you can't close it. You only get an open recordset object back when doing a select query....
Hi All, I'm back again with another problem. I want to create an ASP page, lets name it as "Main", which will have one Select Box. When user change this box,...
So your problem is reading the ajax object or adding the html to the form based on the value of the Ajax object. If adding the html to the form is the problem...
Oh wait pardon for reading your e-mail incorrectly. you can only communicate javascript --> vbscript in an Ajax fasion so if you want to build the form...
Hi friends, I am new to ASP & ASP.NET. I am trying to add a new record with a Photo in the Ms-Access MDB file. But I am not able to do it. Is there any way I...
Hello, Whenever I have come across this problem it is because the FileSystemObject is blocked on the server. It seems that people think this is too powerful a...
Hi All, Im creating a User registration form in ASP. User can register his/her username with the following condition to be met; the username must not contain...
Hello Everyone, I am developing a website, which has online registration with 2 Images to be uploaded with the profile.. Please Note: I will be restricting the...
the best way, upload image to folder, save image name in DB. I would also sql server not Access. Tony... ... will have ... folder on the ... into the ... ...
Hi all, I got a very good code for uploading the Photos to a folder on my server. This code than copies the name of the JPG file into the MDB database file, as...
Andy / Charles, After much debate, it turned out to be our internal security. Apparently a change was made and applied some restriction preventing me from...
Hi Charles, First of all I am sorry for posting the same question in all the groups, I will not do that again. The code sent by you is working very much fine....
Hi All, Im back again but you guys will be glad to know that my previous problem of Regular Expression (see Going Wrong with Regular Expression) has been...
I am trying to add email to my application written in vbscript. If I don't use the .body tag I see my digital signature. But adding the objMail.body tag...
No reason to ask here. Your question was answered in http://groups.yahoo.com/group/AspNetAnyQuestionIsOk by Dean. If the answer was not complete enough...
I am setting up a web site to be able to upload images. The upload works fine, and I can get the file name out of the string. What I need to do is seperate the...
You could use the Split function, like this: ' Split the string into a two-element array aFileName = Split(sFileName, ".") ' Take the first element of the...
Additionally you could use the Left function in combination with the InStr function (to get the position of the dot), or if you're concerned that the filename...
Actually found the Split function right after I posted this, and that works fine for what I am doing. Thanks for posting though. ... the InStr ... that the ......
I am using aspupload to upload images to a web site. One of the things I want to allow is for the user to enter a caption to go along with the picture. I have...
Are you trying to get the caption with the normal Request.Form object, or are you using the Form property of the AspUpload control as recommended in the...
That fixed it. Thanks for the advice. I was trying to just do an cap=request("txtCap1") and it was the wrong method. Mike ... object, or ... recommended in ......
I should give you an edge case where this won't work if you have a file named: myfile.with.multiple.points.gif.bak then this wont work. You could use the split...