Cirieno
|
Registered User
|
|
Oct 22 |
comment |
Is there a peformance difference between jquery selector or a variable 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. |
|
Oct 21 |
comment |
Dictionary/Client VS Application Variables 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... |
|
Oct 21 |
comment |
Dictionary/Client VS Application Variables 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. |
|
Oct 21 |
comment |
Dictionary/Client VS Application Variables 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 "test1/2/3" 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. |
|
Oct 20 |
comment |
Can this be a efficent and reliable way to purify user’s input? 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. |
|
Oct 20 |
answered | Validate email address form submit |
|
Oct 20 |
answered | Dictionary/Client VS Application Variables |
|
Oct 20 |
awarded | ● Commentator |
|
Oct 20 |
comment |
strange Encoding issue 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... |
|
Oct 19 |
answered | strange Encoding issue |
|
Sep 19 |
awarded | ● Yearling |
