|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#16
|
||||
|
||||
|
Yup, thanx Bslintx and to Phoenix who started the debate
![]()
__________________
Look! Its a ShemZilla ![]() ![]()
|
|
#17
|
||||
|
||||
|
Quote:
thanks shadow, i checked i saw the link...i must have re-linked while you caught it...hence the renaming...thanks for the points and trying to fix the link...btw..by all means please go ahead and delete this post - to keep clean THANKS
__________________
Please give respect to those that helped solve an issue by clicking on the icon
|
|
#18
|
||||
|
||||
|
nah.... there is links chain starting here:
http://forums.aspfree.com/showpost....174&postcount=1 no need to clean anything. ![]() |
|
#19
|
|||
|
|||
|
Thank You for the post. I didn't know that. From now on there will be no underscore in the names of the servers.
http://www.cyanyz.com |
|
#20
|
||||
|
||||
|
Pure ASP Upload Classes
Things You Should Know, Part #5
A common question that gets asked on these forums is how to upload without installing a COM object, well it can be done and there are several solutions out there. In my opinion Upload Files Without COM v3.11 by Lewis Moten is the best one. This class not only supports Image uploads, but you specify file types. It also has progress bar support. My next favorite is Free ASP Upload, this class would be next in line, as its a quick and dirty solution. Next Part
__________________
John Shepard Beyond The Impossible ----------------------------- Has a post helped you? Please show your apprecitation by clicking the image in the right upper corner.Posting code? Put your code between [code] and [/code] tags. X-Login and X-Send Last edited by freeasphelp : November 26th, 2005 at 04:33 PM. |
|
#21
|
||||
|
||||
|
Quote:
![]() |
|
#22
|
||||
|
||||
|
Use OLE DB!!!
Things You Should Know, Part #6
Another common question on these forums is why ODBC is generating errors, usally the reason is that ODBC has become unstable or its a permission issue. Microsoft and most ASP experts recommend using OLE DB, instead of ODBC. Microsoft claims that it is unstable running on IIS. OLE DB is the better choice anyway and you can do everything you can with ODBC, and even more: Microsoft Access OLE DB connection string: Code:
strCnn = "Provider=Microsoft.Jet.OleDb.4.0;Data Source=" & Server.MapPath("/db/database.mdb") & ";"
Next Part Last edited by Shadow Wizard : July 15th, 2005 at 05:38 AM. Reason: added next part |
|
#23
|
||||
|
||||
|
Alternatives to asp recordcount method
Things You Should Know Part 7
http://www.adopenstatic.com/faq/rec...lternatives.asp The use of .RecordCount involves the creation of Recordsets using relatively expensive cursors (click here for details). There are a number of alternative methods that can be used. Listed in the link are three preferred methods, and two methods that aren't. Next Part Last edited by Shadow Wizard : July 23rd, 2005 at 03:16 PM. Reason: added next part. :) |
|
#24
|
||||
|
||||
|
ASP Classic and CAPTCHA
Things You Should Know, Part #8
Ever want to add CAPTCHA to your logins or forms. Well you can with this cool ASP Classic function. It uses HTML, CSS and some JavaScript to produce a pretty good CAPTCHA. It does have some areas for improvement, for example it uses Sessions now. Also some of the questions it ask wouldn't work for someone who suffers colorblindness, but its free code and can be modified as long as the modified version is shared. A CAPTCHA Solution Built With Classic ASP, CSS And Javascript. Next Part Last edited by freeasphelp : July 20th, 2005 at 05:43 AM. |
|
#25
|
||||
|
||||
|
Recordset Paging the fast scalable way.
Things You Should Know, Part #9
Another common question that gets asked on this forum is how to Page a Recordset. Paging a recordset is really not that difficult, and doing it the fast and scalable way will improve your site's performance. The best way to page a recordset is the GetRows or GetString method of the ADODB.Recordset. GetString is the better of the two, but much harder to work with. Paging Records with GetRows Next Part Last edited by Shadow Wizard : July 23rd, 2005 at 03:26 PM. Reason: added next part. :) |
|
#26
|
||||
|
||||
|
Things You Should Know, Part #10
Using Access Database, the mdb file and its folder must have Read/Write/Execute permission set for the IUSR account in order that you will be able to Insert/Update/Delete data in the database. without such permissions, you're likely to get such error: Quote:
How to do that? simple. 1. double click My Computer in the web server and browse the the folder containing the mdb file. 2. right click the folder, choose properties. 3. go to the Security tab. if no such tab exist, go to Tools --> Folder Options and make sure to disable the "simple sharing" option. 4. in the Security tab, click Add 5. choose the account used by IIS - by default it would be IUSR_<machine name> but it may also be different. you can check this via the MMC panel. 6. Add the account and grant it full permissions. confirm. 7. repeat it for the mdb file itself. The above was tested only under Win2K platform, it may be different for XP machine, I would like to get feedback whether it's working or not for such platform and fix this post if needed. |
|
#27
|
||||
|
||||
|
Using Response.Clear()
Things You Should Know, Part #11
Before executing a Response.Redirect() you should use a Response.Clear() to remove the possibility of errors on the client's end courtesy of ::shamrog12:: http://forums.aspfree.com/t71719/s.html Last edited by bslintx : August 1st, 2005 at 09:27 AM. |