Hello Guys: I am having a hard time, na: impossible time deleting folders from my WWWROOT folder. All of my existing files are old and need to be purged,...
Check the NTFS permissions on the wwwroot folder and make sure it is not set to READ ONLY. Bob Filipiak A question not asked is a lost opportunity to learn. ...
Bob: Thanks, but the permissions are not set to Read Only. Andy ... set ... need to be ... permission error ... default web-site, but ... I get the same...
9721
Krishna, Hari
hkrishna@...
Sep 8, 2004 1:19 pm
sorry you guys..my email server is messed up and so I had to test..for yahoogroups..I wanted to see if I receive my own mail from yahoogroups.. CONFIDENTIALITY...
Hi, We have a website which has thousands of resumes stored online in the server. This is consuming a lot of disk space. Does anybody know of a solution to ...
I have created an event calendar that list upcoming events for each month. The calendar has two security levels: 1-Administrative and 2-Registered Users. If...
Hi windows 2000 supports compressed folders. when you create a file on a compressed folder it is compressed automatically so you dont have to do anything. But...
Hi In the admin page itself check if the user has admin privilages, you can do this by checking the UOFAdmin value in the session. if you dont have a security ...
From memory, compressed folders are only available on NTFS volumes. The only problem with this is that Windows 98 and below will not access NTFS volumes -...
I would like to list the first n field names, but I'm not having luck. For example, I can list data in the 2nd through last fields by using this: For j = 1 to...
Just as an aside, do you need to select the fields you're ordering by? In most situations you can just include them in the order by clause and not select them....
I didn't know you could ORDER BY w/out selecting them... I guess I had never tried. Thanks! ... most situations you can just include them in the order by...
Looks like my original answer didn't come through - anyway, I suggested something along the lines of :- for i = 1 to n response.write objRS.Fields(i).Name next...
Something like this should do it :- for i = 0 to n response.write objRS.Fields(i).Name next i Dan www.diado.com ... From: Chris Hagwood [mailto:cwh@...] ...
Hi All.. Iam using the below coding to get the size of a folder. This code works fine if the size of the folder is less than 50 MB. But when it goes above 100...
Dear tribesmen, I have searched for this problem in quite a few places on the net but i din get a solution so posting it as many forums i can get. I have two...
Hi Sudha, ... Probably because you aren't forcing the result to a specific variable type so it's breaking the code because it can't auto-assign the variable...
Hi Fellow Geek, ... Please don't do that. Limit yourself to the ones you think you'll get a response in. ... Several ways. Which one to use depends on what you...
hi, u use global.asa : copy ur global.asa and past on where ur
website2 folder and check path in global.asa path ... From: active-server-pages@yahoogroups.com...
Hi Shawn, Queen lurker here... I did not ask this question but I have been wondering this same thing for quite some time. What I would like to achieve is to...
I realize this is a little quirky, but here goes. I have a basic script that searches my database table for the users email address. IF the record does not...
Nothing obvious from a quick scan of the code. What does a msgbox say is actually in objRS("Overwrite")? What sort of field is "Overwrite"? If it's Boolean,...
What database are you using, and what data type is the OverWrite field? If it's access and the data type is Yes/No (good old access), then the field will hold...
Sorry, I should have included this the first time. I am using an Access database. "Overwrite" is a text field and I checked the case of "Yes" and it is...
... Have you tried: ELSEIF lcase(objRS("Overwrite")) = "yes" THEN Failing that, you don't have any memo type fields in the table that come before the Overwrite...
And maybe trimming off any extra spaces as well :- ELSEIF trim(lcase(objRS("Overwrite"))) = "yes" THEN Dan www.diado.com ... From: Paul Manzotti...
How did you check the Yes? You definitely need to check it from within ASP, including making sure that there are no leading or trailing spaces. E.g. msgbox...