User John - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T02:38:48Z http://stackoverflow.com/feeds/user/30006 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1868415/securely-transferring-users-between-web-sites 2 Securely Transferring Users Between Web Sites John 2009-12-08T17:09:36Z 2009-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-from 2 Where did the octal/hex representations come from? John 2009-12-02T20:10:23Z 2009-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-results 2 Paging: Storing Search Results John 2009-11-06T19:50:07Z 2009-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-values 1 T-SQL: Looping through an array of known values John 2009-10-19T15:04:12Z 2009-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-concerns 0 ASP.Net - Forms Authentication setup for specific Security concerns John 2009-10-14T13:12:56Z 2009-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>&lt;authentication mode="Forms"&gt; &lt;forms loginUrl="Login.aspx" timeout="15" slidingExpiration="true"/&gt; &lt;/authentication&gt; </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-beneficial 3 3-Tiered Web Architecture: Are Layers on Seperate Machines Beneficial? John 2009-10-06T13:58:20Z 2009-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-parameters 3 Oracle "ORA-01008: not all variables bound" Error w/ Parameters John 2009-09-14T14:47:50Z 2009-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-argument 0 ASP.Net 2.0: Browser Back Button - Invalid postback or callback argument John 2009-07-10T15:36:41Z 2009-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 &lt;pages enableEventValidation="true"/&gt; in configuration or &lt;%@ Page EnableEventValidation="true" %&gt; 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#1335610 9 Answer by John for Removing duplicate string from List (.NET 2.0!) John 2009-08-26T15:34:17Z 2009-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#1330216 1 Answer by John for Render a string[] as a series of editable controls? John 2009-08-25T18:47:01Z 2009-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&lt;List&lt;string&gt;&gt;</code></li> <li>Loop through your original array, adding the strings to a new <code>List&lt;string&gt;</code></li> <li>Once you've reached your desired total character length, add the <code>List&lt;string&gt;</code> to your <code>List&lt;List&lt;string&gt;&gt;</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>&lt;asp:Repeater id="rpt1" runat="server"&gt; &lt;ItemTemplate&gt; &lt;div&gt; &lt;asp:Repeater id="rpt2" runat="server" DataSource='&lt;%# Container.DataItem %&gt;'&gt; &lt;ItemTemplate&gt; &lt;asp:TextBox id="txt1" runat="server" Text='&lt;%# Container.DataItem %&gt;' Width='&lt;%# MyWidthAlgorithm(Container.DataItem) %&gt;' &lt;/ItemTemplate&gt; &lt;/asp:Repeater&gt; &lt;/div&gt; &lt;/ItemTemplate&gt; &lt;/asp:Repeater&gt; </code></pre> http://stackoverflow.com/questions/1329254/use-asp-net-to-e-mail-contents-of-an-entire-html-page/1329298#1329298 4 Answer by John for Use ASP.NET to e-mail contents of an entire HTML Page? John 2009-08-25T16:10:50Z 2009-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#1323975 5 Answer by John for Content of h1 tag is invisible until moused over in IE 6 John 2009-08-24T18:30:21Z 2009-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#1312808 3 Answer by John for ASP.Net - How do I include an embedded JavaScript file from another project? John 2009-08-21T15:52:27Z 2009-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>&lt;script&gt;&lt;/script&gt; opposed to &lt;script /&gt;);</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#1267041 0 Answer by John for Correct String Escaping for T-SQL string literals John 2009-08-12T15:45:54Z 2009-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>'&lt;ss&gt;&lt;s&gt;1&lt;/s&gt;&lt;s&gt;2&lt;/s&gt;...etc...&lt;/ss&gt;'</code></p> http://stackoverflow.com/questions/1246688/asp-net-image-upload-architecture/1246746#1246746 1 Answer by John for ASP.NET Image Upload Architecture John 2009-08-07T20:05:16Z 2009-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#1246672 14 Answer by John for asp.net c# better way to Parse numbers and datetimes from query string then try/catch John 2009-08-07T19:48:26Z 2009-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#1245802 1 Answer by John for Html input tag with server side resource string John 2009-08-07T16:44:18Z 2009-08-07T16:44:18Z <p>I would think apocalypse's answer should work:</p> <pre><code>&lt;%= GetLocalResourceObject("Button.Text") %&gt; </code></pre> <p>or</p> <pre><code>&lt;%= GetGlobalResourceObject("res", "Button.Text") %&gt; </code></pre> http://stackoverflow.com/questions/1245553/whats-wrong-with-this-asp-connection-string/1245582#1245582 0 Answer by John for What's wrong with this ASP connection string? John 2009-08-07T15:55:01Z 2009-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#1238964 1 Answer by John for Can i redirect_to in a new window John 2009-08-06T13:41:32Z 2009-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#1188217 1 Answer by John for Implementing authentication in an webpage through WinForms app John 2009-07-27T13:42:25Z 2009-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#1179845 0 Answer by John for How do I handle line breaks in a CSV file using C#? John 2009-07-24T19:54:45Z 2009-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#1174410 0 Answer by John for Pressing enter on any textbox invokes my Save button click event!!?? John 2009-07-23T20:47:22Z 2009-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#1174333 3 Answer by John for Is language adoption driven by the productivity of its available IDEs? John 2009-07-23T20:37:39Z 2009-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-c 0 Encoding issue: vbscript "Chr()" to .Net C# John 2009-07-15T21:02:36Z 2009-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-header 0 Classic ASP: Get "Authorization" Header John 2009-07-15T16:08:34Z 2009-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#1132438 0 Answer by John for Classic ASP: Get "Authorization" Header John 2009-07-15T16:22:09Z 2009-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-net 1 Server.Transfer from ASP to ASP.Net John 2009-07-14T20:15:09Z 2009-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>&lt;% Server.Transfer("MyApp/NewXmlHandler.aspx") %&gt; </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#1131038 0 Answer by John for Server.Transfer from ASP to ASP.Net John 2009-07-15T12:14:12Z 2009-07-15T12:14:12Z <p>In case anyone else runs into this, I ended up passing the request along like so:</p> <pre><code>&lt;% 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 %&gt; </code></pre> http://stackoverflow.com/questions/1110286/asp-net-2-0-browser-back-button-invalid-postback-or-callback-argument/1111587#1111587 0 Answer by John for ASP.Net 2.0: Browser Back Button - Invalid postback or callback argument John 2009-07-10T19:43:41Z 2009-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-posting 0 ASP.Net Cross Page Posting John 2009-07-08T16:02:22Z 2009-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#1070493 Comment by John on What are common UI misconceptions and annoyances? John 2009-12-01T20:36:02Z 2009-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 point http://stackoverflow.com/questions/1791571/to-those-in-the-financial-sector-storage-of-data-question/1791603#1791603 Comment by John on To those in the Financial Sector, storage of data question John 2009-11-24T17:23:28Z 2009-11-24T17:23:28Z You don't store data that can be calculated UNLESS it would result in significant gains to effeciency elsewhere http://stackoverflow.com/questions/1742810/c-maintaining-session-over-https-on-the-client/1742839#1742839 Comment by John on C# maintaining session over HTTPS on the client John 2009-11-16T16:18:59Z 2009-11-16T16:18:59Z 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) http://stackoverflow.com/questions/1689938/paging-storing-search-results/1689960#1689960 Comment by John on Paging: Storing Search Results John 2009-11-06T20:32:10Z 2009-11-06T20:32:10Z I like the 'olderthan' concept. The querystring can be validated against what you'll allow, or the values could be stored in the viewstate http://stackoverflow.com/questions/1682873/how-do-i-prevent-a-line-break-occurring-before-an-unordered-list/1682900#1682900 Comment by John on How do I prevent a line break occurring before an unordered list? John 2009-11-05T21:20:58Z 2009-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#1589245 Comment by John on T-SQL: Looping through an array of known values John 2009-10-19T15:40:45Z 2009-10-19T15:40:45Z 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! http://stackoverflow.com/questions/1566147/asp-net-forms-authentication-setup-for-specific-security-concerns/1566348#1566348 Comment by John on ASP.Net - Forms Authentication setup for specific Security concerns John 2009-10-14T14:24:02Z 2009-10-14T14:24:02Z His 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-beneficial Comment by John on 3-Tiered Web Architecture: Are Layers on Seperate Machines Beneficial? John 2009-10-06T18:19:00Z 2009-10-06T18:19:00Z 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 http://stackoverflow.com/questions/50149/best-way-to-convert-datetime-to-n-hours-ago-in-sql/50341#50341 Comment by John on Best way to convert DateTime to "n Hours Ago" in SQL John 2009-09-28T20:57:23Z 2009-09-28T20:57:23Z Did you try this? I don't believe you can call 'getDate()' from a function in t-sql http://stackoverflow.com/questions/1422032/oracle-ora-01008-not-all-variables-bound-error-w-parameters/1425702#1425702 Comment by John on Oracle "ORA-01008: not all variables bound" Error w/ Parameters John 2009-09-15T12:02:43Z 2009-09-15T12:02:43Z 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 http://stackoverflow.com/questions/1422032/oracle-ora-01008-not-all-variables-bound-error-w-parameters/1422440#1422440 Comment by John on Oracle "ORA-01008: not all variables bound" Error w/ Parameters John 2009-09-14T15:59:29Z 2009-09-14T15:59:29Z That 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-url Comment by John on web service references - changing URL John 2009-08-31T21:05:23Z 2009-08-31T21:05:23Z Excluding 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#1335610 Comment by John on Removing duplicate string from List (.NET 2.0!) John 2009-08-27T14:40:39Z 2009-08-27T14:40:39Z Oops; looks like I was a little confused on how hashtables work http://stackoverflow.com/questions/1335590/removing-duplicate-string-from-list-net-2-0/1335610#1335610 Comment by John on Removing duplicate string from List (.NET 2.0!) John 2009-08-26T16:05:07Z 2009-08-26T16:05:07Z steve, wouldn't the check be logn and not 1? that would be the same as using a sortedlist over a list http://stackoverflow.com/questions/1335590/removing-duplicate-string-from-list-net-2-0/1335610#1335610 Comment by John on Removing duplicate string from List (.NET 2.0!) John 2009-08-26T15:48:08Z 2009-08-26T15:48:08Z 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