Kristen

1,221
Reputation
237 views

Registered User

Name Kristen
Member for 9 months
Seen Nov 25 at 17:47
Website
Location
Age
Nov
22
comment Migrate (monolithic) Classic ASP to ASP.Net
Good points. In my "more performance is always welcome" I was referring to cost of running a server - i.e. we can get more clients on a shared server if the application performs better, rather than providing better client satisfaction per se - although if we left the same number of customers on a shared server, and improved the performance of the APP, it would run faster for all clients :)
Nov
21
comment Update and Insert Stored Procedure
Will the EXISTS lock the PK being queried such that there is no possbility of another user doing an INSERT in the meantime? If not then there is the posibility that the EXISTS finds NO row, but the subsequent INSERT fails because the row has already been inserted (by then). I don't know the answer WRT the Isolation level, hence my question.
Nov
21
comment Doubt about “Put SCRIPTs at the bottom” advice
Good point about external / off-site scripts being hosted on a server that turns out to be Down and that causing the whole page rendering to be "wrecked". We host, e.g., JQuery include scripts on our own server (rather than using, say, Google's code-server) so that we have tight control of the outcome.
Nov
21
comment Doubt about “Put SCRIPTs at the bottom” advice
I'm probably being thick again, but even if I use READY() how does that help me with an OnClick event? If the user clicks it before my late-loading library has finsihed loading, or if they click it before the READY() even has fired (and some unobtrusive JS has modified the OnClick event for that element), the user won't get my intended OnClick action at all - will they? In which case rendering the content such that the user can see it "sooner" is of no benefit if they can't then Click anything UNTIL the JS has finished loading - but perhaps I'm missing something??
Nov
21
comment Doubt about “Put SCRIPTs at the bottom” advice
Thanks. You make a good point about 3rd party libraries, although my point was intended to be related to libraries supporting code that we execute "in the page", and, as it happens, we don't have any 3rd party libraries for that. We do have Google Analytics, and now I think about it we do have that right at the bottom :)
Nov
21
asked Doubt about “Put SCRIPTs at the bottom” advice
Nov
21
answered Do you validate your websites?
Nov
21
comment Migrate (monolithic) Classic ASP to ASP.Net
We don't have a performance problem. But we host multiple clients per server, more performance is always welcome. Our clients don;t have a problem with our development times, but if we improve them we make more profit. We don't have a "next project", this is an engine used as the backbone for all our client work.
Nov
17
comment Best examples of CRUD Web Form Design
Nice examples. I didn't find a CRUD-specific one, but I've posted a request on their UserVoice :) Thanks for the links.
Nov
16
answered Grouping dates by month in an sql server query (stored procedure)
Nov
15
answered Validating all entries in Input Boxes.
Nov
15
answered SQL : Optimizing query to have few IO operations
Nov
13
answered SQL Query for Performing Radius Search based on Latitude Longitude
Nov
13
answered How can I track which user has last modified the stored proc in sql server 2005+?
Nov
13
comment Removing duplicate field entries in SQL
@ZombieSheep the inner query will take care of that (provided UserName is included in the WHERE) although I now appreciate that this doesn't work in MySQL
Nov
13
comment Removing duplicate field entries in SQL
As the accepted answer works does MySQL allow a sub-select on the delete-table so long as it is in a JOIN, just not for a correlated sub-select?
Nov
13
comment Removing duplicate field entries in SQL
Sorry, I don't have MySQL
Nov
13
comment Removing duplicate field entries in SQL
Might be worth reviewing other similar questions here stackoverflow.com/search?q=%5Bsql%5D+%5Bduplicate…
Nov
13
comment Removing duplicate field entries in SQL
P.S. And then add a UNIQUE INDEX to that column :)
Nov
13
comment Removing duplicate field entries in SQL
Won't work if Foreign Keys target this table though (have to Drop and Recreate those FKs)
Nov
13
answered Removing duplicate field entries in SQL
Nov
13
comment Migrate (monolithic) Classic ASP to ASP.Net
Been reading "ASP Xtreme Evolution", looks interesting and JSON / URL rerwite (been looking at that anyway) and so on are things that will be useful; thanks for that and your other comments. ASP to ASP.NET migration link: asp.net/downloads/archived/…
Nov
13
comment Migrate (monolithic) Classic ASP to ASP.Net
Second paragraph has two sentences :) Prose is not my strong point, sorry.
Nov
13
comment Migrate (monolithic) Classic ASP to ASP.Net
Note sure I agree with this. I assume (wrongly?) that I get a more productive environment (bugs show up more easily, development time shorter). I get to build some Containers for Caching etc. that improve performance. But I agree that the conversion, alone, gets nothing except down time ...
Nov
12
asked Migrate (monolithic) Classic ASP to ASP.Net
Nov
12
comment Best non-flash upload component for web applications?
Very informative, thanks.
Nov
12
answered How can I set an alias name in SQL Server
Nov
12
answered Easy SQL query performance question
Nov
12
answered Server Or Database
Nov
11
comment Querying Active Directory from Sql Server 2005
Is the link to AD read-only, or can you Insert via this route too?
Nov
11
answered Are sql injection attacks only a threat on a page that has a form?
Nov
11
comment Way to tell bots from human visitors?
We do this on each page (with a parameter for the ID of the page's log entry, and use it to establish/log "rendering time")
Nov
11
comment Way to tell bots from human visitors?
Might the CSS background image be cached on subsequent visits and not re-requested?
Nov
11
answered Way to tell bots from human visitors?
Nov
11
answered What are some options to store images securely other than storing on database?
Nov
10
comment How do I specify “close existing connections” in sql script
Thanks; makes sense.
Nov
10
comment How do I specify “close existing connections” in sql script
I've used this but often wondered if there was a window of opportunity for another user to get in as the "single user" - is that possible? Possible alternative is ALTER DATABASE [MyDatabaseName] SET OFFLINE WITH ROLLBACK IMMEDIATE
Nov
10
answered Jquery Tree plugin
Nov
10
comment how to validate input type = ‘file’ with javascript?
Consider using swfupload.org ? which is Flash file uploader - it provides validation of Type, Max size, etc. plus progress bars and CANCEL button
Nov
10
answered Query running longer by adding unused WHERE conditions
Nov
10
answered Getting counts for a paged SQL search stored procedure
Nov
10
answered update each row in a procedure
Nov
10
comment Best non-flash upload component for web applications?
We too use swfupload. I haven't seen a means of doign progress-bars without Flash / Java, but I'll be happy to learn otheriwse :) ; I'm sceptical that the server actually gets to react until the whole file is POST'd, hence can't report back %age received during the upload - whereas I believe Flash does the progress-bar client side based on the %age SENT rather than RECEIVED). The server-side bit of deconstructing the multi=part mime is quite a pain too IME (mucking about with Byte/Unicode conversion)
Nov
10
answered Multipart/form-data and UTF-8 in a ASP Classic application
Nov
10
answered Efficient way to check if a SQL query will return results
Oct
16
asked How do I report SQL Injection attacks?
Oct
9
revised What technical features could I include in my 404 File Not Found error handling page?
added 406 characters in body
Oct
9
revised What technical features could I include in my 404 File Not Found error handling page?
added 1252 characters in body
Oct
9
asked What technical features could I include in my 404 File Not Found error handling page?
Oct
6
asked Escaping characters in javascript strings