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...
Thanks for the advice. Just dealing with images that I know will only have the one dot. Thanks though. May need this at another time though. ... in ... that ...
Need some help yet again. I am displaying images on a page based on entries in a database. I want to have a link to the next and previous images at the top of...
You are returning only 1 record to the recordset object. This means that the recordset object only contains 1 image and you can't navigate to a next or...
I want to display banners in sequential order on a page mainpage.asp where there are multiple locations of banner. The code for banner lies in a separate file...
Sounds like IE will refresh it's page. What you can do is do a meta-refresh in html of the banner page which will show another banner thus upping the banner...
Thanks for responding. I used meta-referesh but the problem did not get resolved. ... which ... making ... have much luck. ... mainpage.asp ... which ... where...
Hi All, Im creating a user login appliction in ASP and MYSQL. I've created a page where user will login/register.I can sort out all the things here but where...