User Cirieno - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T05:08:31Z http://stackoverflow.com/feeds/user/17615 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1535239/validate-email-address-form-submit/1596545#1596545 0 Answer by Cirieno for Validate email address form submit Cirieno 2009-10-20T18:41:27Z 2009-10-20T18:41:27Z <p>There are a few things that concern me here.</p> <ol> <li><p>You don't explicitly put the form("email") value into session, yet you're trying to use it later in the script. Perhaps you've omitted that part of the code for brevity, I don't know.</p></li> <li><p>You use the variable "emailValidate" and set it to 0 (ie false), but make it 1 (true) when the validation fails. Ths seems like bad variable naming to me. "fail" should be False, "pass" should be True.</p></li> <li><p>As pointed out above, for the love of your database and all those tasty little live email addresses, please refactor your code to avoid SQL injection!</p></li> <li><p>Your comments state that you're looking for just one @ sign, but your code is saying that if you find just one @ sign then emailValidate = 1 (fail (in your code)) -- which leads me to think your own variable naming has confused you!</p></li> </ol> <p>I don't know how long you've been coding in ASP so I'm loathe to come across as too sanctimonious but this coding approach just isn't right. It's long-winded and confused. The ideal solution has already been suggested using Regex and a little helper function into which you pass the email address and just returns True or False...</p> http://stackoverflow.com/questions/1595596/dictionary-client-vs-application-variables/1596382#1596382 1 Answer by Cirieno for Dictionary/Client VS Application Variables Cirieno 2009-10-20T18:11:00Z 2009-10-20T18:11:00Z <p>I'd absolutely suggest loading the dictionary only the one time, as the Dictionary object is heavy in terms of memory, slow in terms of lookup and the big one: isn't always destroyed in memory when you think it should be. Thus even after a user has left the page this object can still linger in memory waiting to be disposed of (even if you explicitly "destroy" it). Now multiply that times number of page hits per visit per user...</p> <p>An alternative and more memory-light method would be to use an array -- one-dimensional if you can maintain track of the index somewhere (best), or two-dimensional with a lookup function if you need to (certainly if others are maintaining the code now or in the future). </p> http://stackoverflow.com/questions/1572307/strange-encoding-issue/1588883#1588883 1 Answer by Cirieno for strange Encoding issue Cirieno 2009-10-19T14:11:44Z 2009-10-19T14:11:44Z <p>Make sure that you've saved your ASP pages as UTF8 format -- it's not always enough to just have HTML and server-side ASP pointers to UTF8.</p> <p>If you're working on Windows then most Windows apps seem to save in either your current locale or in Windows-1252 (ANSI) by default and not UTF8.</p> <p>Try opening your files in Notepad and when you go to "Save As..." change the encoding from ANSI to UTF8 and upload again. Ignore the 3 odd metacharacters you might see at the beginning of the file (if you do), this is the Unicode BOM.</p> <p>However, it's worth including every pointer you can to your page being UTF-8 ie HTML metatags, ASP locale settings, FORM tags can have an encoding specified, and if you're absolutely sure your page is XHTML compliant then an XML header.</p> http://stackoverflow.com/questions/434750/is-there-a-way-to-collapse-functions-and-sub-routines-for-classic-asp-in-visual-s/702155#702155 0 Answer by Cirieno for Is there a way to collapse functions and sub-routines for Classic ASP in Visual Studio 2008? Cirieno 2009-03-31T17:30:21Z 2009-03-31T17:30:21Z <p><a href="http://www.primaltools.com/" rel="nofollow">Primalscript</a> does this. It's mostly very nifty, except it's tending towards bloat which is frustrating. It's also pricey, but the speed it adds to development probably justifies the cost over time.</p> http://stackoverflow.com/questions/661437/classic-asp-sql-query-returns-two-columns-out-of-ten/701747#701747 0 Answer by Cirieno for Classic ASP SQL Query Returns Two Columns Out Of Ten... Cirieno 2009-03-31T16:02:49Z 2009-03-31T16:02:49Z <p>I don't know if you've fixed this yet, but if not then you should try changing the order you select your columns so that the nText field goes at the end. There is a technical explanation for this (something to do with the maximum byte-length of a record, iirc).</p> http://stackoverflow.com/questions/420843/need-some-help-understanding-password-salt/440152#440152 1 Answer by Cirieno for Need some help understanding password salt Cirieno 2009-01-13T18:21:57Z 2009-01-13T18:21:57Z <p>I'm going to post this as I have a question that I'm not sure has been answered to my understanding:</p> <ol> <li>say your whole database is lost, stolen or hacked</li> <li>you have three relevant columns: "username", "passwordHashed", "salt"</li> <li>"salt" is a long string of random chars, unique for each user</li> <li>the hacker peruses the database and picks out a juicy username such as "admin"</li> </ol> <p>What's to stop the hacker compiling a new comprehensive rainbow table where every result in his table is pre-hashed with the salt? After all, they only want to break that one account.</p> <p>Today I've read many, many comments on Coding Horror posts generally saying that salting makes a rainbow table ineffective against discovering all the passwords in a database but I would imagine the savvy hacker would really only be interested in those few records with admin privileges, or perhaps in cracking a specific individual, in which case the other (x)-1 records in the DB are irrelevant.</p> <p>So then the limiting factor is time and storage. Is that the best thing that we can say about our current security model? -- that it will take too much time and storage to attempt? I would point to a skilled bot-net developer who could slice computational time up against millions of machines. I would say that terabyte storage now is only a few harddrives.</p> <p>Wouldn't it bet better to keep a collection of salts outside of the database -- I'm not saying I know the answer to where, but just some place to keep the key away from the door?</p> http://stackoverflow.com/questions/341338/sql-changing-a-value-to-upper-or-lower-case/341346#341346 1 Answer by Cirieno for SQL changing a value to upper or lower case Cirieno 2008-12-04T17:05:18Z 2008-12-04T17:05:18Z <p>SQL SERVER 2005:</p> <pre><code>print upper('hello'); print lower('HELLO'); </code></pre> http://stackoverflow.com/questions/340983/switching-an-image-using-jquery/341088#341088 0 Answer by Cirieno for Switching an image using jQuery Cirieno 2008-12-04T15:54:53Z 2008-12-04T16:06:09Z <p>Wow. Answers come flying in, don't they? All of the above would work, but you could try this for a one-liner (it's untested)...</p> <pre><code>image.attr("src", "Images/Tree" + ((image.attr("src").indexOf("Collapse")&gt;0) ? "Expand" : "Collapse") + ".gif"); </code></pre> <p>Update: I've just tested this and it works, so would the person who voted it down care to explain why they did that?</p> http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/320282#320282 4 Answer by Cirieno for What interesting programming bugs have you seen? Cirieno 2008-11-26T10:50:32Z 2008-11-26T10:50:32Z <p>I'm surprised no-one has mentioned the <a href="http://www.thedailywtf.com" rel="nofollow">Daily WTF</a> yet...</p> http://stackoverflow.com/questions/295417/format-integer-to-string-with-5-digits/317625#317625 0 Answer by Cirieno for Format integer to string with 5 digits Cirieno 2008-11-25T15:02:54Z 2008-11-25T15:16:43Z <p>Try this for a one-liner (well, two with error prevention):</p> <pre><code>function padZeroDigits(sVariable, iLength) if (iLength &lt;= len(sVariable)) then padZeroDigits = sVariable : exit function : end if padZeroDigits = string(iLength - len(sVariable),"0") &amp; sVariable end function </code></pre> http://stackoverflow.com/questions/229010/jquery-resize-not-working-at-firefox-chrome-and-safari/229139#229139 0 Answer by Cirieno for jQuery resize not working at FireFox, Chrome and Safari Cirieno 2008-10-23T09:48:05Z 2008-10-23T09:48:05Z <p>I might suggest something like this:</p> <p>1) on page load, get width of your div and put it in a global variable</p> <p>2) on execution of whatever operation directly or implicitly resizes that div (which I assume is a javascript-driven event) check the new width against the old width and update the global value with the new width.</p> http://stackoverflow.com/questions/153598/unknown-column-in-where-clause/153629#153629 0 Answer by Cirieno for Unknown Column In Where Clause Cirieno 2008-09-30T15:41:37Z 2008-09-30T15:41:37Z <p>Not as far as I know in MS-SQL 2000/5. I've fallen foul of this in the past.</p> http://stackoverflow.com/questions/143745/refactoring-include-file-hell/148124#148124 1 Answer by Cirieno for Refactoring "include file hell" Cirieno 2008-09-29T09:44:35Z 2008-09-29T09:44:35Z <p>Wow. It constantly surprises me how many people have a hate for ASP. In decent hands it's a perfectly capable language for designing web applications.</p> <p>However, I will concede that the way include files are managed in ASP can be a bit of a brainache -- because (depending on how you use them) they have to be loaded and parsed even if you're not using half the functions contained within.</p> <p>I tend to have one include file (<code>initialise.asp</code> or some such) that itself includes links to several functions libraries (<code>lib_http.asp</code>, <code>lib_mssql.asp</code> or similar) and all library functions are self-contained so there is no worry about crossing variables. Any global vars are declared and set in the master file. This means I can use a function anywhere, any time and not worry about where it was defined, it's just there for use. And IDEs such as Visual Studio and Primalscript have the ability to "jump to definition" when you find a call to a function that you don't recognise.</p> <p>Then, any script-specific includes are included in the script after the call to this master include file.</p> <p>I concede that this is a memory-hungry approach as all the functions in all the libraries are compiled for every script call, so the method needs refining for each site you develop -- decide what to call via the master include and what is more page-specific. It would be nice to be able to only load what you need -- but that's the DLL approach and is not available for the majority of real-world developments, and also you'd have to weigh up the processor cost of compiling small scripts vs loading components.</p> <p>A concise directory structure is requisite and easily developed, but it can be a chore to wade through all the code in an existing site and change any links or mappath calls. Also, be aware that some IIS administrators disallow the <code>'..\'</code> method of traversing directories via VBScript, so then all file references have to be absolute paths.</p> http://stackoverflow.com/questions/139670/data-in-a-table-with-carriage-return/139706#139706 0 Answer by Cirieno for Data in a table with carriage return? Cirieno 2008-09-26T14:04:02Z 2008-09-26T14:04:02Z <p>Is this result in your HTML or in Query analyser? If it's in HTML, have a look at the source code and it might appear correct there, in which case you'd have to replace the crlf characters with <code>&lt;br /&gt;</code> tags.</p> <p>I'm also thinking that there used to be attributes you could add to an HTML textarea to force it to send carriage returns in certain ways -- soft or hard? I haven't looked that up, perhaps someone could do that.</p> <p>But SQL Server does save the two characters in my experience. In fact I did exactly as you described here a few days ago using SQL 2005 and each line break has two unprintable characters.</p> http://stackoverflow.com/questions/59599/vbscript-conditional-short-circuiting-workaround/139572#139572 2 Answer by Cirieno for VBScript conditional short-circuiting workaround Cirieno 2008-09-26T13:42:35Z 2008-09-26T13:42:35Z <p>Or perhaps I got the wrong end of the question. Did you mean something like <code>iIf()</code> in VB? This works for me:</p> <pre><code>myField = returnIf(isNothing(rs("myField")), 0, rs("myField")) </code></pre> <p>where <code>returnIf()</code> is a function like so:</p> <pre><code>function returnIf(uExpression, uTrue, uFalse) if (uExpression = true) then returnIf = uTrue else returnIf = uFalse : end if end function </code></pre> http://stackoverflow.com/questions/59599/vbscript-conditional-short-circuiting-workaround/139545#139545 0 Answer by Cirieno for VBScript conditional short-circuiting workaround Cirieno 2008-09-26T13:36:34Z 2008-09-26T13:36:34Z <p>Two options come to mind:</p> <p>1) use <code>len()</code> or <code>lenb()</code> to discover if there is any data in the variable:</p> <pre><code>if not lenb(rs("myField"))=0 then... </code></pre> <p>2) use a function that returns a boolean:</p> <pre><code>if not isNothing(rs("myField")) then... </code></pre> <p>where <code>isNothing()</code> is a function like so:</p> <pre><code>function isNothing(vInput) isNothing = false : vInput = trim(vInput) if vartype(vInput)=0 or isEmpty(vInput) or isNull(vInput) or lenb(vInput)=0 then isNothing = true : end if end function </code></pre> http://stackoverflow.com/questions/44629/why-continue-writing-legacy-systems/138610#138610 2 Answer by Cirieno for Why continue writing legacy systems? Cirieno 2008-09-26T10:16:58Z 2008-09-26T10:16:58Z <p>@ Mark Brackett: "classic ASP code that no one can maintain or understand. It'll be full of Sql injections, poor coding practices, and unpatched vulnerabilities. Then, a rewrite will finally be ordered, but will fail miserably because no one who developed the original code is still around - so nobody knows what it does."</p> <p>1) Classic ASP is very easy to read on first glance -- it's virtually syntactic English -- hence its initial popularity with people learning to program. True that more complex applications take a little more time to fully discover, but that's the nature of the work.</p> <p>2) You make it sound as if bad coding practices and SQL injections are inherent to the language. They are not and I have to wonder why you would choose to spread this misinformation. A good coder can make ASP robust, scaleable and easy to maintain.</p> <p>3) If the language is no longer common then that means there is more work for contractors with knowledge of legacy systems.</p> <p>I suspect there will still be mission-critical systems running on VB even in the middle of the next decade for many of the reasons mentioned higher in the thread.</p> http://stackoverflow.com/questions/26137/vbscript-asp-classic/92146#92146 7 Answer by Cirieno for VBScript/ASP Classic Cirieno 2008-09-18T12:37:21Z 2008-09-18T12:37:21Z <p>I had to walk away from my PC when I saw the first answer, and am still distressed that it has been approved by so many people. It's an appalling example of the very worst kind of ASP code, the kind that would ensure your site is SQL-injectable and, if you continue using this code across the site, hackable within an inch of its life.</p> <p>This is NOT the kind of code you should be giving to someone new to ASP coding as they will think it is the professional way of coding in the language!</p> <ol> <li><p>NEVER reveal a connection string in your code as it contains the username and password to your database. Use a UDL file instead, or at the very least a constant that can be declared elsewhere and used across the site.</p></li> <li><p>There is no longer any good excuse for using inline SQL for any operation in a web environment. Use a stored procedure -- the security benefits cannot be stressed enough. If you really can't do that then look at inline parameters as a second-best option... Inline SQL will leave your site wide open to SQL injection, malware injection and the rest. </p></li> <li><p>Late declaration of variables can lead to sloppy coding. Use "option explicit" and declare variables at the top of the function. This is best practice rather than a real WTF, but it's best to start as you mean to go on.</p></li> <li><p>No hints to the database as to what type of connection this is -- is it for reading only, or will the user be updating records? The connection can be optimised and the database can handle locking very efficiently if effectively told what to expect.</p></li> <li><p>The database connection is not closed after use, and the recordset object isn't fully destroyed.</p></li> </ol> <p>ASP is still a strong language, despite many folks suggesting moving to .NET -- with good coding practices an ASP site can be written that is easy to maintain, scaleable and fast, but you HAVE to make sure you use every method available to make your code efficient, you HAVE to maintain good coding practices and a little forethought. A good editor will help too, my preference being for PrimalScript which I find more helpful to an ASP coder than any of the latest MS products which seem to be very .NET-centric.</p> <p>Also, where is a "MEMO" field from? Is this Access nomenclature, or maybe MySQL? I ask as such fields have been called TEXT or NTEXT fields in MS-SQL for a decade.</p> http://stackoverflow.com/questions/1606262/is-there-a-peformance-difference-between-jquery-selector-or-a-variable Comment by Cirieno on Is there a peformance difference between jquery selector or a variable Cirieno 2009-10-22T10:16:20Z 2009-10-22T10:16:20Z The second way is probably faster as you're not scanning the DOM index every time for the requisite objects. Also, as you say, it's just better coding practice as long as the new variable names properly reflect what they contain. http://stackoverflow.com/questions/1595596/dictionary-client-vs-application-variables/1599257#1599257 Comment by Cirieno on Dictionary/Client VS Application Variables Cirieno 2009-10-21T14:40:58Z 2009-10-21T14:40:58Z I suppose, as Jeff Atwood has commented on his blog before, these days servers are so powerful (and cheap to add more processing power) that code optimisation is no longer needed as much as when I learned to code... http://stackoverflow.com/questions/1595596/dictionary-client-vs-application-variables/1596382#1596382 Comment by Cirieno on Dictionary/Client VS Application Variables Cirieno 2009-10-21T14:37:43Z 2009-10-21T14:37:43Z AWJ: Discussions with a developer who has wide experience in more languages than I can remember and who has in the past run his own tests on VB memory management. There are all sorts of annoying caveats that means the contents of variables and objects can linger long after you might expect VB to have dropped them. I know I've been tripped up by un-obvious memory leaks before. http://stackoverflow.com/questions/1595596/dictionary-client-vs-application-variables/1596382#1596382 Comment by Cirieno on Dictionary/Client VS Application Variables Cirieno 2009-10-21T14:37:07Z 2009-10-21T14:37:07Z LM: The array would be faster as you would call it directly using the index (from 0 to n) instead of having to do a lookup on the key as you do with a Dictionary object (assuming that's why you have the &quot;test1/2/3&quot; keys. As an aside: remember that your server (machine or IIS) can be restarted at any time and when it does any application vars will no longer exist, so ensure your mechanism checks for the object first and if it's not there then creates and repopulates it automatically. http://stackoverflow.com/questions/793074/can-this-be-a-efficent-and-reliable-way-to-purify-users-input/793132#793132 Comment by Cirieno on Can this be a efficent and reliable way to purify user's input? Cirieno 2009-10-20T18:45:57Z 2009-10-20T18:45:57Z Agreed. I tend to just prefix my form input names with the type of input expected ie s,i,b for string, integer or boolean. It's really an aide de memoir more than a hard-and-fast preventative measure. http://stackoverflow.com/questions/1572307/strange-encoding-issue/1588883#1588883 Comment by Cirieno on strange Encoding issue Cirieno 2009-10-20T18:04:59Z 2009-10-20T18:04:59Z I trust that both servers are identical -- in ASP locale, at least. There are easily six or seven places in one single script where encoding and locale settings can be set or changed. Maybe I should post a list... If both scripts are identical (and are presented to the browser in an identical fashion) and are saved in UTF8 as mentioned above, then the discrepancy must be either at the global Application level or the IIS level of the machine... http://stackoverflow.com/questions/591658/performance-tips-for-classic-asp/591692#591692 Comment by Cirieno on Performance tips for classic asp? Cirieno 2009-02-27T17:30:37Z 2009-02-27T17:30:37Z I wonder if it's the concatenating that's causing the problem. VB is known for not handling concat' of strings well... Look into an alternative method of writing to the screen or creating long strings (think array or stream object). http://stackoverflow.com/questions/346960/asp-conditional-error/346982#346982 Comment by Cirieno on ASP conditional error Cirieno 2009-01-17T16:59:54Z 2009-01-17T16:59:54Z Assuming the OP means classic ASP then your code isn't in the right language... IsNullOrEmpty sounds like a handy function to have though. I just use &quot;if lenb(x)=0&quot; as that serves the same purpose. http://stackoverflow.com/questions/375905/adding-up-total-cost-asp-while/375952#375952 Comment by Cirieno on Adding up total cost - ASP while Cirieno 2009-01-17T16:48:20Z 2009-01-17T16:48:20Z Elegance of code is as much a tribute to the skill of the developer as to the fundamental syntax of the language. ASP can be elegant and easily read when used by someone with the care to do it properly. http://stackoverflow.com/questions/444181/good-way-to-sanitize-input-in-classic-asp/444362#444362 Comment by Cirieno on Good way to sanitize input in classic asp Cirieno 2009-01-17T16:36:56Z 2009-01-17T16:36:56Z The Request object is read-only so you couldn't directly edit the values, but I have for some projects created a Dictionary object into which I've dumped all the values from the incoming form, and those values can be manipulated any way you like... http://stackoverflow.com/questions/246890/bookmarked-page-redirect/247173#247173 Comment by Cirieno on Bookmarked page redirect Cirieno 2008-12-08T16:27:01Z 2008-12-08T16:27:01Z I don't know how it is in Linux, but in Windows I find symbolic links like this to be very dangerous as (let's say) new administrators don't realise that the folder and scripts they are about to delete are in fact the only instance and not the duplicate they naturally expect it to be... http://stackoverflow.com/questions/280101/escaping-in-vb-script/280259#280259 Comment by Cirieno on Escaping in VB script Cirieno 2008-12-08T16:13:08Z 2008-12-08T16:13:08Z What if your form accepted content that was going to be published via some medium other than the web -- eg a magazine. You wouldn't want HTML-encoded characters then. Sometimes the input has to be kept as clean and original as possible if you don't know where it will wind up. http://stackoverflow.com/questions/340232/animate-opacity-out-insert-html-animate-opacity-in/341339#341339 Comment by Cirieno on animate opacity out, insert html, animate opacity in Cirieno 2008-12-04T17:14:02Z 2008-12-04T17:14:02Z This is almost exactly the code I would use, except I have had issues where the fadeIn() starts before the inside html has been fully rendered. To solve that I put the fadeIn() <i>inside</i> the fadeOut()'s callback function, immediately after the .html() method. http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319468#319468 Comment by Cirieno on What interesting programming bugs have you seen? Cirieno 2008-11-26T10:05:52Z 2008-11-26T10:05:52Z And this still happens on Win2k3, I've just tried it. Good grief! http://stackoverflow.com/questions/283812/problem-with-regional-settings-somewhere/284554#284554 Comment by Cirieno on Problem with Regional settings somewhere Cirieno 2008-11-25T15:11:48Z 2008-11-25T15:11:48Z Sadly Robert has stated in two separate posts now that he can't modify the code that has been deployed...