User John - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T02:38:48Zhttp://stackoverflow.com/feeds/user/30006http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1868415/securely-transferring-users-between-web-sites2Securely Transferring Users Between Web SitesJohn2009-12-08T17:09:36Z2009-12-08T17:56:38Z
<p>Here's the scenario:</p>
<ul>
<li>You have two seperate websites that exist in different environments (I.E. different databases, different web servers/domains)</li>
<li>You have full control over the code for both sites, but from the above point, they can not directly communicate with each other's database</li>
<li>You must transfer user from site A to site B securely</li>
</ul>
<p>What is the best way to implement this? Simply sending the user identifier between the sites via query string wouldn't be secure, even if encrypted, since someone else could obtain the URL. It seems like the standard solution is to pass the user identifier along with another temporary key that web site A created, and web site B knows about. If this is the case, what's the proper way of securely setting up the system with the temporary key?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1835465/where-did-the-octal-hex-representations-come-from2Where did the octal/hex representations come from?John2009-12-02T20:10:23Z2009-12-03T16:10:42Z
<p>After all of this time, I've never thought to ask this question; I understand this came from c++, but what was the reasoning behind it:</p>
<ul>
<li>Specify decimal numbers as you
normally would</li>
<li>Specify octal numbers by a leading 0</li>
<li>Specify hexidecimal numbers by a leading 0x</li>
</ul>
<p>Why 0? Why 0x? Is there a natural progression for base-32?</p>
http://stackoverflow.com/questions/1689938/paging-storing-search-results2Paging: Storing Search ResultsJohn2009-11-06T19:50:07Z2009-11-06T19:58:00Z
<p>What's the proper way to deal with a web page that returns results of a search that could have differing results from one moment to another?</p>
<p>I.e. returning the query the first time could contain different results from when the user clicks on page 2, and running the query again.</p>
<p>How do most people deal with this scenario? Generally I'm working with internal ASP.Net applications (where security/bandwidth aren't huge concerns), so I'll store the results in the ViewState, and on postbacks deal with that data opposed to querying the database.</p>
<p>What's the proper methodology for external WWW use? My best guess is to store the results in a temporary database table (not literally a temp table; I guess 'staging' might be more accurate), but I would think that table would get hammered quite a bit with inserts/deletes/etc, and I would think you'd need a process to clean the table up, which doesn't seem like a very elegant solution.</p>
<p>Am I anywhere close?</p>
http://stackoverflow.com/questions/1589214/t-sql-looping-through-an-array-of-known-values1T-SQL: Looping through an array of known valuesJohn2009-10-19T15:04:12Z2009-11-03T18:26:56Z
<p>Here's my scenario:</p>
<p>Let's say I have a stored procedure in which I need to call another stored procedure on a set of specific ids; is there a way to do this?</p>
<p>i.e. instead of needing to do this:</p>
<pre><code>exec p_MyInnerProcedure 4
exec p_MyInnerProcedure 7
exec p_MyInnerProcedure 12
exec p_MyInnerProcedure 22
exec p_MyInnerProcedure 19
</code></pre>
<p>Doing something like this:</p>
<pre><code>*magic where I specify my list contains 4,7,12,22,19*
DECLARE my_cursor CURSOR FAST_FORWARD FOR
*magic select*
OPEN my_cursor
FETCH NEXT FROM my_cursor INTO @MyId
WHILE @@FETCH_STATUS = 0
BEGIN
exec p_MyInnerProcedure @MyId
FETCH NEXT FROM my_cursor INTO @MyId
END
</code></pre>
<p>My Main goal here is simply maintainability (easy to remove/add id's as the business changes), being able to list out all Id's on a single line... Performance shouldn't be as big of an issue</p>
http://stackoverflow.com/questions/1566147/asp-net-forms-authentication-setup-for-specific-security-concerns0ASP.Net - Forms Authentication setup for specific Security concernsJohn2009-10-14T13:12:56Z2009-10-14T14:28:27Z
<p>I need to setup an Asp.Net application w/ forms authentication so that it meets the following criteria:</p>
<ol>
<li>User should log out after 15 minutes of inactivity</li>
<li>User should log out after 24 hours, regardless of activity</li>
</ol>
<p>I believe the first can be accomplished like so in the web.config:</p>
<pre><code><authentication mode="Forms">
<forms loginUrl="Login.aspx" timeout="15" slidingExpiration="true"/>
</authentication>
</code></pre>
<p>But how would you go about resolving the second requirement?</p>
http://stackoverflow.com/questions/1525771/3-tiered-web-architecture-are-layers-on-seperate-machines-beneficial33-Tiered Web Architecture: Are Layers on Seperate Machines Beneficial?John2009-10-06T13:58:20Z2009-10-06T19:28:49Z
<p>A client I'm working for has a standard in which they require the data layer of new applications to be wrapped into a web service, and placed a machine seperate from where the business/presentation layer will be hosted. Could someone tell me what the benefits of doing this are? It seems to me that this causes more problems than it solves:</p>
<ul>
<li>Causes much more traffic/CPU time - generating the XML soap requests/responses opposed to directly connecting to the database</li>
<li>Difficult to debug - Need to debug two seperate projects opposed to one</li>
</ul>
<p>I'm guessing it's potentially due to security concerns (where the presentation machine(s) are exposed to the internet, and the data layer machine is not); however, I can't see how that's any more secure than connecting directly to the database: the account logging into the database shouldn't have anymore access than the web service wrapper would.</p>
<p>Am I missing something?</p>
http://stackoverflow.com/questions/1422032/oracle-ora-01008-not-all-variables-bound-error-w-parameters3Oracle "ORA-01008: not all variables bound" Error w/ ParametersJohn2009-09-14T14:47:50Z2009-09-15T07:38:45Z
<p>This is the first time I've dealt with Oracle, and I'm having a hard time understanding why I'm receiving this error.</p>
<p>I'm using Oracle's ODT.NET w/ C# with the following code in a query's where clause:</p>
<pre><code>WHERE table.Variable1 = :VarA
AND (:VarB IS NULL OR table.Variable2 LIKE '%' || :VarB || '%')
AND (:VarC IS NULL OR table.Variable3 LIKE :VarC || '%')
</code></pre>
<p>and I'm adding the parameter values like so:</p>
<pre><code>cmd.Parameters.Add("VarA", "24");
cmd.Parameters.Add("VarB", "test");
cmd.Parameters.Add("VarC", "1234");
</code></pre>
<p>When I run this query, the server returns:</p>
<pre><code>ORA-01008: not all variables bound
</code></pre>
<p>If I comment out either of the 'AND (....' lines, the query completes successfully. </p>
<p>Why would the query run through alright if I'm only querying with two parameters, but not with three? The error I'm receiving doesn't even make sense</p>
http://stackoverflow.com/questions/1110286/asp-net-2-0-browser-back-button-invalid-postback-or-callback-argument0ASP.Net 2.0: Browser Back Button - Invalid postback or callback argumentJohn2009-07-10T15:36:41Z2009-09-11T06:00:02Z
<p>I have a simple page that, on the initial load, databinds to a GridView. This gridview has sorting and paging enabled, and is also surrounded by an UpdatePanel.</p>
<p>When the user does the following, I receive this error:</p>
<pre><code>Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
</code></pre>
<ul>
<li>Clicks the pager to change to a
specific page (lets say 5)</li>
<li>Clicks on a link to navigate to another page</li>
<li>Presses the back button in their browser to return to the page with the GridView</li>
<li>Grid is now reverted back to it's
original state (on page 1) since the
browser didn't track that, and so the
user clicks to go to page 5 again,
resulting in the error</li>
</ul>
<p>Anyone know what would cause this? It only seems to be a problem when clicking on the same page. If a different page is clicked on the return visit, it's fine. If a column is sorted, then sorted again on the return visit, that is also fine. I'm not sure what specifically about clicking the page twice is causing the problem.</p>
<p>Here's the code for the pager:</p>
<pre><code>protected void gvResults_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
gvResults.DataSource = SearchResults;
gvResults.PageIndex = e.NewPageIndex;
gvResults.DataBind();
}
</code></pre>
<p>where gvResults is the GridView, and 'SearchResults' is a List stored in the viewstate.</p>
<p><strong><em>edit</em></strong></p>
<p>It appears that although the gridview isn't displaying page 5 when the user returns to the page (reverts back to page 1), for some reason the browser did save the viewstate, and has the gridview at page 5. So if I click on page 4 and go through the code for the paging event, I can see that it thinks the page it was on was 5... even though the displayed content was for page 1.</p>
<p>Moral of the story is apparently the viewstate is getting saved when the user clicks the back button to return to the page, but the displayed table is not.</p>
http://stackoverflow.com/questions/1335590/removing-duplicate-string-from-list-net-2-0/1335610#13356109Answer by John for Removing duplicate string from List (.NET 2.0!)John2009-08-26T15:34:17Z2009-08-26T15:34:17Z<p>This probably isn't what you're looking for, but if you have control over this, the most efficient way would be to not add them in the first place...</p>
<p>Do you have control over this? If so, all you'd need to do is a <code>myList.Contains(currentItem)</code> call before you add the item and you're set</p>
http://stackoverflow.com/questions/1330162/render-a-string-as-a-series-of-editable-controls/1330216#13302161Answer by John for Render a string[] as a series of editable controls?John2009-08-25T18:47:01Z2009-08-25T18:47:01Z<p>I'll start off by saying that, from a user interface perspective, I'm not entirely sure as to why you would need to do this, but if it must be done you'd do something along these lines:</p>
<ul>
<li>Start off with your string[]</li>
<li>Create a <code>List<List<string>></code></li>
<li>Loop through your original array, adding the strings to a new <code>List<string></code></li>
<li>Once you've reached your desired total character length, add the <code>List<string></code> to your <code>List<List<string>></code> (which contains your lines)</li>
<li>Repeat these steps until you've gone all the way through your original array</li>
</ul>
<p>Once this is done, you bind the list o' list to a repeater like this below (pseudo code; might be off a bit):</p>
<pre><code><asp:Repeater id="rpt1" runat="server">
<ItemTemplate>
<div>
<asp:Repeater id="rpt2" runat="server" DataSource='<%# Container.DataItem %>'>
<ItemTemplate>
<asp:TextBox id="txt1" runat="server" Text='<%# Container.DataItem %>' Width='<%# MyWidthAlgorithm(Container.DataItem) %>'
</ItemTemplate>
</asp:Repeater>
</div>
</ItemTemplate>
</asp:Repeater>
</code></pre>
http://stackoverflow.com/questions/1329254/use-asp-net-to-e-mail-contents-of-an-entire-html-page/1329298#13292984Answer by John for Use ASP.NET to e-mail contents of an entire HTML Page?John2009-08-25T16:10:50Z2009-08-25T16:10:50Z<p>Something like this maybe (haven't tested):</p>
<pre><code>StringBuilder sb = new StringBuilder();
HtmlTextWriter hw = new HtmlTextWriter(new System.IO.StringWriter(sb));
this.Render(hw);
MailMessage message = new MailMessage();
message.IsBodyHtml = true;
message.Body = sb.ToString();
(new SmtpClient()).Send(message);
</code></pre>
http://stackoverflow.com/questions/1323947/content-of-h1-tag-is-invisible-until-moused-over-in-ie-6/1323975#13239755Answer by John for Content of h1 tag is invisible until moused over in IE 6John2009-08-24T18:30:21Z2009-08-24T18:30:21Z<p>More than likely this is being caused by another styled element on the page.</p>
<p>I think your best option is trial and error... Removing all styles from the page, verifying the h1 element is no longer disappearing, and then re-adding the other styles until you've found the culprit</p>
http://stackoverflow.com/questions/1312779/asp-net-how-do-i-include-an-embedded-javascript-file-from-another-project/1312808#13128083Answer by John for ASP.Net - How do I include an embedded JavaScript file from another project?John2009-08-21T15:52:27Z2009-08-21T15:52:27Z<p>Seems fine; however, at this point I'd really be using client tools to determine whether or not everything's getting there and being used (fiddler/ie toolbar/firebug/etc).</p>
<p>If I had to guess, I would say your code is working, but whatever browser you're using is ignoring the javascript due to the script tag not having a closing tag (i.e. <code><script></script> opposed to <script />);</code> for some reason some browsers are picky about that</p>
http://stackoverflow.com/questions/1266863/correct-string-escaping-for-t-sql-string-literals/1267041#12670410Answer by John for Correct String Escaping for T-SQL string literalsJohn2009-08-12T15:45:54Z2009-08-12T15:45:54Z<p>Usually what I'd do for situations like this, is pass your information in as a parameter, but in XML, so you can do something like this:</p>
<pre><code>DECLARE @iDoc INT
EXEC sp_xml_preparedocument @iDoc OUTPUT, @MyXml
SELECT
*
FROM
MyTable
WHERE
MyColumn IN (SELECT [Id] FROM OPENXML(@iDoc,'/ss/s',2) WITH ([Id] INT '.'))
EXEC sp_xml_removedocument @iDoc
</code></pre>
<p>in this case, the xml would look like <code>'<ss><s>1</s><s>2</s>...etc...</ss>'</code></p>
http://stackoverflow.com/questions/1246688/asp-net-image-upload-architecture/1246746#12467461Answer by John for ASP.NET Image Upload ArchitectureJohn2009-08-07T20:05:16Z2009-08-07T20:05:16Z<p>In reality both scenarios are very similar, so it's up to you... Databases weren't designed to serve files, but if the size isn't really a concern for you, I don't see a problem with doing it.</p>
<p>To answer your question about direct access, you'd setup the file images the same way you would for the database: You'd use some sort of page (probably a .ashx handler) that serves the images, allowing you a layer of logic between the user and image to determine whether or not they should have access to it. The actual directory the images are located in would then need to either a) not be part of the directory structure in IIS or b) if it is part of IIS, only allow windows authenticated access, and only allow the account the application process is running under access to the directory.</p>
http://stackoverflow.com/questions/1246663/asp-net-c-better-way-to-parse-numbers-and-datetimes-from-query-string-then-try-c/1246672#124667214Answer by John for asp.net c# better way to Parse numbers and datetimes from query string then try/catchJohn2009-08-07T19:48:26Z2009-08-07T19:56:17Z<pre><code>int tempInt = 0;
if(int.TryParse(Request["Id"], out tempInt))
//it's good!!
</code></pre>
<p>Likewise, for the date it's "DateTime.TryParse"</p>
<p><em>edit</em></p>
<p>To fully mimic what your code is doing, you'd have this:</p>
<pre><code>long? id = null; DateTime? time = null;
long tempLong; DateTime tempDate;
if(long.TryParse(Request["id"], out tempLong))
id = tempLong;
if(DateTime.TryParse(Request["time"], out tempDate))
time = tempDate;
</code></pre>
http://stackoverflow.com/questions/1245764/html-input-tag-with-server-side-resource-string/1245802#12458021Answer by John for Html input tag with server side resource stringJohn2009-08-07T16:44:18Z2009-08-07T16:44:18Z<p>I would think apocalypse's answer should work:</p>
<pre><code><%= GetLocalResourceObject("Button.Text") %>
</code></pre>
<p>or</p>
<pre><code><%= GetGlobalResourceObject("res", "Button.Text") %>
</code></pre>
http://stackoverflow.com/questions/1245553/whats-wrong-with-this-asp-connection-string/1245582#12455820Answer by John for What's wrong with this ASP connection string?John2009-08-07T15:55:01Z2009-08-07T15:55:01Z<p>What's with the " " in the middle of the string?</p>
http://stackoverflow.com/questions/1238868/can-i-redirectto-in-a-new-window/1238964#12389641Answer by John for Can i redirect_to in a new windowJohn2009-08-06T13:41:32Z2009-08-06T13:41:32Z<p>I would think the easiest solution would be to just have your link contain</p>
<p>target="_blank"</p>
<p>The window would open, go to your counter page, and get redirected to the correct page</p>
http://stackoverflow.com/questions/1180323/implementing-authentication-in-an-webpage-through-winforms-app/1188217#11882171Answer by John for Implementing authentication in an webpage through WinForms appJohn2009-07-27T13:42:25Z2009-07-27T13:42:25Z<p>If you're opening a browser for the user, and the page will be requested over HTTPS, then the easiest way would be to add a Basic Authorization header to the initial request, and have your page go off of that.</p>
<p>In C#, the code to pull out the name/password would be like so:</p>
<pre><code> string authHeader = application.Request.Headers["Authorization"];
if (authHeader.ToUpper().Contains("BASIC"))
{
//get the user's name/password
string decodedResponseString = Encoding.Default.GetString(Convert.FromBase64String(authHeader.Substring(6)));
int dividerIndex = decodedResponseString.IndexOf(':');
userName = decodedResponseString.Substring(0, dividerIndex);
password = decodedResponseString.Substring(dividerIndex + 1);
</code></pre>
<p>Creating the header in the desktop application would be the above, but reversed (i.e. addheader('authorization', 'basic (username:password encrypted in base 64)').</p>
<p>Using the header like so would be the standard way to do this, but in reality you could probably just make your own header (or cookie) with a custom login algorithm information</p>
<p><em>edit</em>:
Actually this might not work; I'm not sure if you'd have enough control over the browser to alter the headers when requesting a page</p>
http://stackoverflow.com/questions/1179157/how-do-i-handle-line-breaks-in-a-csv-file-using-c/1179845#11798450Answer by John for How do I handle line breaks in a CSV file using C#?John2009-07-24T19:54:45Z2009-07-24T19:54:45Z<p>What I usually do is read the text in character by character opposed to line by line, due to this very problem.</p>
<p>As you're reading each character, you should be able to figure out where each cell starts and stops, but also the difference between a linebreak in a row and in a cell: If I remember correctly, for Excel generated files anyway, rows start with \r\n, and newlines in cells are only \r.</p>
http://stackoverflow.com/questions/1174369/pressing-enter-on-any-textbox-invokes-my-save-button-click-event/1174410#11744100Answer by John for Pressing enter on any textbox invokes my Save button click event!!??John2009-07-23T20:47:22Z2009-07-23T20:47:22Z<p>Your browser is trying to be a nice guy and click the button for you, even if you didn't set it to be the "default" (it will "click" the first button in the form on enter).</p>
<p>Like David said, if you want the enter key to cause a line break in the textbox, it needs to be multi-line</p>
http://stackoverflow.com/questions/1174283/is-language-adoption-driven-by-the-productivity-of-its-available-ides/1174333#11743333Answer by John for Is language adoption driven by the productivity of its available IDEs?John2009-07-23T20:37:39Z2009-07-23T20:37:39Z<p>Yes.</p>
<p>Even if you've created the most useful, most advanced language on the planet, there's no way I'm going to waste my time coding in it if I have to use notepad.</p>
http://stackoverflow.com/questions/1134064/encoding-issue-vbscript-chr-to-net-c0Encoding issue: vbscript "Chr()" to .Net C#John2009-07-15T21:02:36Z2009-07-16T04:25:39Z
<p>I can't seem to find the answer to this question. </p>
<p>It seems like I should be able to go from a number to a character in C# by simply doing something along the lines of (char)MyInt to duplicate the behaviour of vb's Chr() function; however, this is not the case:</p>
<p>In VB Script w/ an asp page, if my code says this:</p>
<pre><code>Response.Write(Chr(139))
</code></pre>
<p>It outputs this:</p>
<pre><code>‹ (character code 8249)
</code></pre>
<p>Opposed to this:</p>
<blockquote>
<p> (character code 139)</p>
</blockquote>
<p>I'm missing something somewhere with the encoding, but I can't find it. What encoding is Chr() using?</p>
http://stackoverflow.com/questions/1132363/classic-asp-get-authorization-header0Classic ASP: Get "Authorization" HeaderJohn2009-07-15T16:08:34Z2009-07-15T16:22:09Z
<p>I've been searching for a solution on the internet for this, and can not find it anywhere.</p>
<p>I've setup a simple POST request through Fiddler for an ASP page on my local machine:</p>
<pre><code>Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, application/x-shockwave-flash
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)
Host: localhost
Connection: Keep-Alive
Authorization: Basic xW91bsdtcyNqYTpfs8Jkb4ql
Content-Length: 9
asdfdfdsf
</code></pre>
<p>The ASP page contains the following line:</p>
<pre><code>Response.Write(Request.ServerVariables("HTTP_Authorization"))
</code></pre>
<p>Instead of writing out "Basic .....", it doesn't write anything at all. If I change "HTTP_Authorization" to any of the other headers (HTTP_Content_Length), I can pull in their values.</p>
<p>Is there a reason ASP is refusing to let me see that specific header?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1132363/classic-asp-get-authorization-header/1132438#11324380Answer by John for Classic ASP: Get "Authorization" HeaderJohn2009-07-15T16:22:09Z2009-07-15T16:22:09Z<p>Apparently it was being removed by the server's windows auth</p>
<p>I unchecked "Integrated Windows authentication" and the header started showing up correctly</p>
http://stackoverflow.com/questions/1127733/server-transfer-from-asp-to-asp-net1Server.Transfer from ASP to ASP.NetJohn2009-07-14T20:15:09Z2009-07-15T12:14:12Z
<p>Here's my scenario:</p>
<p>A desktop application posts to a specific ASP page in my web application with XML data. The web application is being re-written to ASP.Net; however, the Url for that specific page can not change (due to the desktop application).</p>
<p>My original idea was to simply 'forward' the requests from the classic ASP page to a new ASPX page, which would handle the request, by changing the ASP page like so:</p>
<pre><code><% Server.Transfer("MyApp/NewXmlHandler.aspx") %>
</code></pre>
<p>However, this doesn't work:</p>
<blockquote>
<p>Active Server Pages error 'ASP 0221'
Invalid @ Command directive
/MyApp/NewXmlHandler.aspx, line 1</p>
</blockquote>
<p>Is there a simple way I can take the posted data in the ASP page, and forward it on to another page?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1127733/server-transfer-from-asp-to-asp-net/1131038#11310380Answer by John for Server.Transfer from ASP to ASP.NetJohn2009-07-15T12:14:12Z2009-07-15T12:14:12Z<p>In case anyone else runs into this, I ended up passing the request along like so:</p>
<pre><code><%
Dim postData
Dim xmlhttp
'Forward the request to let .Net handle
Set xmlhttp = server.CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.Open "POST","http://127.0.0.1/MyApp/NewXmlHandler.aspx",false
xmlhttp.send(Request)
Response.Write xmlhttp.responseText
Set xmlhttp = nothing
%>
</code></pre>
http://stackoverflow.com/questions/1110286/asp-net-2-0-browser-back-button-invalid-postback-or-callback-argument/1111587#11115870Answer by John for ASP.Net 2.0: Browser Back Button - Invalid postback or callback argumentJohn2009-07-10T19:43:41Z2009-07-10T19:43:41Z<p>After searching I couldn't really find a reasonable answer; however, I did find that you can use the 3.5 preview controls w/ asp.net 2.0, so I added the History control to the page, and let that handle the back button issues.</p>
<p>Looks like it resolved the issue</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1099020/asp-net-cross-page-posting0ASP.Net Cross Page PostingJohn2009-07-08T16:02:22Z2009-07-08T17:51:11Z
<p>Currently I have two pages:</p>
<p>The first page contains an input form, and the 2nd page generates an excel document. The input form's button posts to this 2nd page.</p>
<p>What I'd like to do is add a second button which also posts to the 2nd page; however, I'll need requests created from this new button to act differently, which brings me to my question:</p>
<p>Is there a way I can tell, from the 2nd page, which button was pressed to submit the request?</p>
<p>The main reason I'm asking is I'd like to re-use the 2nd page's logic in parsing the information from the first page if possible; I'd rather not have to copy it to a new page and have the new button post to that.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1070493#1070493Comment by John on What are common UI misconceptions and annoyances?John2009-12-01T20:36:02Z2009-12-01T20:36:02Z@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 pointhttp://stackoverflow.com/questions/1791571/to-those-in-the-financial-sector-storage-of-data-question/1791603#1791603Comment by John on To those in the Financial Sector, storage of data questionJohn2009-11-24T17:23:28Z2009-11-24T17:23:28ZYou don't store data that can be calculated UNLESS it would result in significant gains to effeciency elsewherehttp://stackoverflow.com/questions/1742810/c-maintaining-session-over-https-on-the-client/1742839#1742839Comment by John on C# maintaining session over HTTPS on the clientJohn2009-11-16T16:18:59Z2009-11-16T16:18:59ZHe 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)http://stackoverflow.com/questions/1689938/paging-storing-search-results/1689960#1689960Comment by John on Paging: Storing Search ResultsJohn2009-11-06T20:32:10Z2009-11-06T20:32:10ZI like the 'olderthan' concept. The querystring can be validated against what you'll allow, or the values could be stored in the viewstatehttp://stackoverflow.com/questions/1682873/how-do-i-prevent-a-line-break-occurring-before-an-unordered-list/1682900#1682900Comment by John on How do I prevent a line break occurring before an unordered list?John2009-11-05T21:20:58Z2009-11-05T21:20:58Z@Asaph: What unit would you like to give 0?http://stackoverflow.com/questions/1589214/t-sql-looping-through-an-array-of-known-values/1589245#1589245Comment by John on T-SQL: Looping through an array of known valuesJohn2009-10-19T15:40:45Z2009-10-19T15:40:45ZI 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!http://stackoverflow.com/questions/1566147/asp-net-forms-authentication-setup-for-specific-security-concerns/1566348#1566348Comment by John on ASP.Net - Forms Authentication setup for specific Security concernsJohn2009-10-14T14:24:02Z2009-10-14T14:24:02ZHis is similar to yours: I ended up doing something along these lines (actually stored as part of the identity.name opposed to session)http://stackoverflow.com/questions/1525771/3-tiered-web-architecture-are-layers-on-seperate-machines-beneficialComment by John on 3-Tiered Web Architecture: Are Layers on Seperate Machines Beneficial?John2009-10-06T18:19:00Z2009-10-06T18:19:00ZThey 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 dohttp://stackoverflow.com/questions/50149/best-way-to-convert-datetime-to-n-hours-ago-in-sql/50341#50341Comment by John on Best way to convert DateTime to "n Hours Ago" in SQLJohn2009-09-28T20:57:23Z2009-09-28T20:57:23ZDid you try this? I don't believe you can call 'getDate()' from a function in t-sqlhttp://stackoverflow.com/questions/1422032/oracle-ora-01008-not-all-variables-bound-error-w-parameters/1425702#1425702Comment by John on Oracle "ORA-01008: not all variables bound" Error w/ ParametersJohn2009-09-15T12:02:43Z2009-09-15T12:02:43Zthat 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 thathttp://stackoverflow.com/questions/1422032/oracle-ora-01008-not-all-variables-bound-error-w-parameters/1422440#1422440Comment by John on Oracle "ORA-01008: not all variables bound" Error w/ ParametersJohn2009-09-14T15:59:29Z2009-09-14T15:59:29ZThat worked... can't believe it would act in that manor, but it worked, so i'll take it! Thanks!http://stackoverflow.com/questions/1359362/web-service-references-changing-urlComment by John on web service references - changing URLJohn2009-08-31T21:05:23Z2009-08-31T21:05:23ZExcluding the app.config (which contains the URL), all of the other files should be the same.http://stackoverflow.com/questions/1335590/removing-duplicate-string-from-list-net-2-0/1335610#1335610Comment by John on Removing duplicate string from List (.NET 2.0!)John2009-08-27T14:40:39Z2009-08-27T14:40:39ZOops; looks like I was a little confused on how hashtables workhttp://stackoverflow.com/questions/1335590/removing-duplicate-string-from-list-net-2-0/1335610#1335610Comment by John on Removing duplicate string from List (.NET 2.0!)John2009-08-26T16:05:07Z2009-08-26T16:05:07Zsteve, wouldn't the check be logn and not 1? that would be the same as using a sortedlist over a listhttp://stackoverflow.com/questions/1335590/removing-duplicate-string-from-list-net-2-0/1335610#1335610Comment by John on Removing duplicate string from List (.NET 2.0!)John2009-08-26T15:48:08Z2009-08-26T15:48:08ZIf 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