John

1,521
reputation
137 views

Registered User

name John
member for 1 year
seen yesterday
website
location
age
Dec
8
asked Securely Transferring Users Between Web Sites
Dec
2
revised Where did the octal/hex representations come from?
oops
Dec
2
revised Where did the octal/hex representations come from?
added 15 characters in body
Dec
2
asked Where did the octal/hex representations come from?
Dec
1
comment What are common UI misconceptions and annoyances?
@presario - In that case there should just be a radio option of 'none'; it doesn't make sense to break the standard conception of how checkboxes work just for that point
Nov
24
comment To those in the Financial Sector, storage of data question
You don't store data that can be calculated UNLESS it would result in significant gains to effeciency elsewhere
Nov
17
awarded  Notable Question
Nov
16
comment C# maintaining session over HTTPS on the client
He was a little confused assuming the site you're talking to was ASP.Net based, but regardless his suggestion was to set the cookie you get back after the first call's secure property to true and see if that works (I think)
Nov
6
comment Paging: Storing Search Results
I like the 'olderthan' concept. The querystring can be validated against what you'll allow, or the values could be stored in the viewstate
Nov
6
asked Paging: Storing Search Results
Nov
5
comment How do I prevent a line break occurring before an unordered list?
@Asaph: What unit would you like to give 0?
Oct
22
awarded  Yearling
Oct
19
comment T-SQL: Looping through an array of known values
I was hoping there would be a more elegant way, but I think this will be as close as I can get: Ended up using a hybrid between using the select/unions here, and the cursor from the example. Thanks!
Oct
19
asked T-SQL: Looping through an array of known values
Oct
14
comment ASP.Net - Forms Authentication setup for specific Security concerns
His is similar to yours: I ended up doing something along these lines (actually stored as part of the identity.name opposed to session)
Oct
14
asked ASP.Net - Forms Authentication setup for specific Security concerns
Oct
6
comment 3-Tiered Web Architecture: Are Layers on Seperate Machines Beneficial?
They haven't fully explained it yet... I'm writing this up now so I'll have some background on what their possible reasons could be, when they do
Oct
6
asked 3-Tiered Web Architecture: Are Layers on Seperate Machines Beneficial?
Sep
28
comment Best way to convert DateTime to “n Hours Ago” in SQL
Did you try this? I don't believe you can call 'getDate()' from a function in t-sql
Sep
15
comment Oracle “ORA-01008: not all variables bound” Error w/ Parameters
that makes more sense... I re-arranged the parameters yesterday and realized it was binding by the position of the variable and not the name (which was no good); didn't realize there was an option to change that
Sep
14
accepted ASP.Net 2.0: Browser Back Button - Invalid postback or callback argument
Sep
14
accepted Classic ASP: Get “Authorization” Header
Sep
14
comment Oracle “ORA-01008: not all variables bound” Error w/ Parameters
That worked... can't believe it would act in that manor, but it worked, so i'll take it! Thanks!
Sep
14
accepted Server.Transfer from ASP to ASP.Net
Sep
14
accepted XmlWriter encoding issues
Sep
14
accepted ASP.Net unable to see shared folder
Sep
14
asked Oracle “ORA-01008: not all variables bound” Error w/ Parameters
Sep
3
awarded  Nice Answer
Sep
1
awarded  Popular Question
Aug
31
comment web service references - changing URL
Excluding the app.config (which contains the URL), all of the other files should be the same.
Aug
27
comment Removing duplicate string from List (.NET 2.0!)
Oops; looks like I was a little confused on how hashtables work
Aug
26
comment Removing duplicate string from List (.NET 2.0!)
steve, wouldn't the check be logn and not 1? that would be the same as using a sortedlist over a list
Aug
26
accepted Removing duplicate string from List (.NET 2.0!)
Aug
26
comment Removing duplicate string from List (.NET 2.0!)
If size is a concern, I'd think you'd be fine doing the same method above, but using a SortedList opposed to a standard List
Aug
26
answered Removing duplicate string from List (.NET 2.0!)
Aug
26
accepted Use ASP.NET to e-mail contents of an entire HTML Page?
Aug
25
answered Render a string[] as a series of editable controls?
Aug
25
answered Use ASP.NET to e-mail contents of an entire HTML Page?
Aug
24
answered Content of h1 tag is invisible until moused over in IE 6
Aug
21
answered ASP.Net - How do I include an embedded JavaScript file from another project?
Aug
19
comment What is your best programmer joke?
@Senthil: facepalm picture
Aug
12
comment Correct String Escaping for T-SQL string literals
I don't believe whitespace in general needs to be escaped in XML; it's just what it is
Aug
12
answered Correct String Escaping for T-SQL string literals
Aug
7
answered ASP.NET Image Upload Architecture
Aug
7
awarded  Nice Answer
Aug
7
revised asp.net c# better way to Parse numbers and datetimes from query string then try/catch
added 322 characters in body
Aug
7
answered asp.net c# better way to Parse numbers and datetimes from query string then try/catch
Aug
7
comment Html input tag with server side resource string
adding runat would alter his generated client id for the control; I'm guessing that's trying to be avoided
Aug
7
answered Html input tag with server side resource string
Aug
7
comment LINQ to SQL C# COALESCE
As the others pointed out, LINQ and T-SQL aren't identical in terms of functionality, but I have a question for your SQL: Why the coalesce? Why not just do "SET @SIZES = ''" prior to the select statement, opposed to coalescing over every single row