User Josh Stodola - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T23:43:51Z http://stackoverflow.com/feeds/user/54420 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1890648/styling-anchor-tags-without-hrefs-being-used-to-trigger-javascript-within-page/1890727#1890727 0 Answer by Josh Stodola for Styling anchor tags without href's--being used to trigger javascript within page Josh Stodola 2009-12-11T20:36:43Z 2009-12-11T20:36:43Z <p>Use markup like this...</p> <pre><code>&lt;a id="myLink" href="JavascriptDisabled.htm"&gt;Jump&lt;/a&gt; </code></pre> <p>JavascriptDisabled.htm should be a page that says <strong>Javascript must be enabled for this to work!</strong></p> <p>Then you can override the default click functionality of the link with unobtrusive Javascript like this...</p> <pre><code>window.onload = function() { document.getElementById("myLink").onclick = function() { //Execute your Javascript return false; // This prevents the redirect } } </code></pre> <p>So people with Javascript enabled get the correct functionality. Those with Javascript disabled will actually get a message that tells them why it's not working. I'd say it's a win/win!</p> http://stackoverflow.com/questions/1888921/is-there-ways-to-create-optional-arguments-to-functions-in-vb-script/1888936#1888936 1 Answer by Josh Stodola for Is there ways to create optional arguments to functions in vb script? Josh Stodola 2009-12-11T15:46:47Z 2009-12-11T15:46:47Z <p>How about <a href="http://www.aspfree.com/c/a/Windows-Scripting/Overloading-Methods-and-More-in-VBScript/" rel="nofollow">overloading</a>?</p> http://stackoverflow.com/questions/1885391/how-do-i-write-a-regular-expression-to-match-any-non-empty-content-of-an-xml-elem/1885610#1885610 1 Answer by Josh Stodola for How do I write a Regular Expression to match any non-empty content of an XML element that has no children elements? Josh Stodola 2009-12-11T03:25:27Z 2009-12-11T03:25:27Z <p>I would not use regular expressions to do this! I would run it through a Tidy utility and then use XSLT and XPath.</p> http://stackoverflow.com/questions/1884987/determine-if-an-iframe-is-visible-on-the-screen/1885025#1885025 1 Answer by Josh Stodola for Determine if an iframe is visible on the screen Josh Stodola 2009-12-11T00:15:50Z 2009-12-11T00:15:50Z <p>No, it can not be done because you can not access the document of the parent domain. That's needed to determine the position of the iframe element. You can get the size of the users screen, but that's about it. Your iframe could be invisible and you would have no way to tell. Sorry!</p> http://stackoverflow.com/questions/1882429/how-can-i-append-content-to-the-bottom-of-a-fixed-height-div-and-have-it-overflow/1882456#1882456 2 Answer by Josh Stodola for How can I append content to the bottom of a fixed-height div and have it overflow-y: scroll? Josh Stodola 2009-12-10T17:08:13Z 2009-12-10T17:50:22Z <p>I think you'll need to use Javascript to do the scrolling part by setting <code>scrollTop</code> to the <code>scrollHeight</code> after each append. My buddy <a href="http://radio.javaranch.com/pascarello/2005/12/14/1134573598403.html" rel="nofollow">Eric Pascarello posted a solution</a> quite a while ago.</p> <p>Getting it vertically positioned to the bottom is also somewhat of a challenge, but the following CSS ought to do it...</p> <pre><code>&lt;div id="test"&gt; &lt;div class="bottom"&gt; &lt;p&gt;Test1&lt;/p&gt; &lt;p&gt;Test2&lt;/p&gt; &lt;p&gt;Test3&lt;/p&gt; &lt;p&gt;Test4&lt;/p&gt; &lt;p&gt;Test5&lt;/p&gt; &lt;p&gt;Test6&lt;/p&gt; &lt;p&gt;Test7&lt;/p&gt; &lt;p&gt;Test8&lt;/p&gt; &lt;p&gt;Test9&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; #test { background:green; height:100px; position:relative; } #test .bottom { bottom:0px; max-height:100px; overflow:auto; position:absolute; width:100%; } #test p { margin:0; } </code></pre> http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox/1876688#1876688 1 Answer by Josh Stodola for How do I allow CTRL-V (Paste) on a Winforms Textbox? Josh Stodola 2009-12-09T20:33:18Z 2009-12-09T20:33:18Z <p>The code you posted has nothing to do with your Ctrl + V problem, that is for certain. Not much else I can tell you unless you post some more code.</p> <p>Special code should not be needed for Ctrl + V, but one guess I have is to make sure you have <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxbase.shortcutsenabled.aspx" rel="nofollow"><code>YourTextBoxId.ShortcutsEnabled</code></a> set to <code>True</code>.</p> http://stackoverflow.com/questions/1874866/how-to-fire-onload-event-on-document-in-ie/1875595#1875595 1 Answer by Josh Stodola for How to fire "onload" event on document in IE Josh Stodola 2009-12-09T17:46:04Z 2009-12-09T17:46:04Z <p>For some reason, it appears that IE overrides the <code>onload</code> property of <code>window</code> with an empty object after the DOM is loaded. At least that is the case when you try to access it from within any event handler of a DOM element...</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Test by Josh&lt;/title&gt; &lt;script type="text/javascript"&gt; window.onload = function() { alert("Test"); } alert(typeof window.onload); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;h1 onclick="alert(typeof window.onload);"&gt;Test&lt;/h1&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>In this situation, you'll see that window.onload is recognized as a function initially, then you see the "Test" alert. When you click on the heading, you'll see that window.onload is now an <code>object</code>. I tried iterating through the properties of the object, but it's empty. This is not cool.</p> <p>One lame workaround is to grab the function in the accessible scope and assign it to a different property that you can fire at your convenience...</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Test by Josh&lt;/title&gt; &lt;script type="text/javascript"&gt; window.onload = function() { alert("Test"); } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;h1 onclick="window.onloadfix()"&gt;Test&lt;/h1&gt; &lt;!-- Could potentially be injected via server-side include if needed --&gt; &lt;script type="text/javascript"&gt; window.onloadfix = function() { window.onload(); } &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>I can't think of any other way to address this issue right now.</p> http://stackoverflow.com/questions/1870103/create-a-video-stream-avi-from-a-series-of-images 0 Create a Video Stream (AVI) from a Series of Images Josh Stodola 2009-12-08T21:50:54Z 2009-12-08T22:12:36Z <p>There is an IP web camera that I wrote a .NET class for sometime ago. It's basically a Timer implementation that pings a snapshot CGI script from the camera every five seconds. The camera itself is very rudamentary; it does not have any sort of API for me to work with, the only thing I can do programmatically (remotely) is invoke this script. The script returns a 640x480 JPEG image. Simple.</p> <p>Now what I need to be able to do is take a days worth of these images, and create a "time lapse" AVI video stream out of it that will eventually be embedded into a web page. How can I do this with VB.NET?</p> http://stackoverflow.com/questions/1861460/essential-online-resources-for-net-developers/1861902#1861902 0 Answer by Josh Stodola for Essential online resources for .NET developers Josh Stodola 2009-12-07T18:21:41Z 2009-12-07T18:21:41Z <p><a href="http://weblogs.asp.net/scottgu" rel="nofollow">ScottGu</a> and <a href="http://west-wind.com/weblog" rel="nofollow">Rick Strahl</a> are my favorite .NET blogs. Tons of useful content.</p> http://stackoverflow.com/questions/1861109/forcing-windows-resize-to-fire/1861676#1861676 0 Answer by Josh Stodola for Forcing windows resize to fire Josh Stodola 2009-12-07T17:48:37Z 2009-12-07T17:48:37Z <p>You can resize the window like this...</p> <pre><code>window.resizeTo(width, height); </code></pre> <p>And if you need to trigger the event handler, you can do that like this...</p> <pre><code>window.onresize(); </code></pre> http://stackoverflow.com/questions/1860998/strange-syntax-of-number-methods-in-javascript/1861033#1861033 10 Answer by Josh Stodola for Strange syntax of Number methods in JavaScript Josh Stodola 2009-12-07T16:18:14Z 2009-12-07T16:18:14Z <p>It's a syntax error because you are representing a number. Strings can work that way, but not numbers, because a period immediately following a number symbolizes a decimal value. The character after the <code>.</code> is causing the error.</p> http://stackoverflow.com/questions/1860673/how-to-refresh-iframe-parent-page-after-a-submit-in-the-iframe/1860732#1860732 0 Answer by Josh Stodola for How to refresh iframe parent page after a submit in the iframe? Josh Stodola 2009-12-07T15:34:04Z 2009-12-07T15:34:04Z <p>Use an <code>onload</code> event handler on your iframe. When it fires after the submit, execute your <code>top.location.reload</code>...</p> <pre><code>// In parent window.onload = function() { document.getElementById("MY_IFRAME").onload = function() { top.location.reload(); } } </code></pre> http://stackoverflow.com/questions/1860482/when-do-you-choose-to-load-your-javascript-at-the-bottom-of-the-page-instead-of-t/1860567#1860567 0 Answer by Josh Stodola for When do you choose to load your javascript at the bottom of the page instead of the top? Josh Stodola 2009-12-07T15:08:11Z 2009-12-07T15:08:11Z <p>I put all external scripts (such as Google analytics) at the bottom so their lag does not effect the loading of the DOM.</p> http://stackoverflow.com/questions/1334382/upload-a-file-referenced-via-url/1851135#1851135 1 Answer by Josh Stodola for Upload a file referenced via URL Josh Stodola 2009-12-05T04:25:35Z 2009-12-05T04:25:35Z <p>Just have a Textbox on your page to let them enter a URL and then do this when the form is submitted...</p> <pre><code>string url = YOUR_TEXTBOX.Text(); Uri uri; try { uri = new Uri(url); } catch (UriFormatException ex) { // Error throw ex; } byte[] file; using (System.Net.WebClient client = new System.Net.WebClient()) { file = client.DownloadData(uri); } // now you have the file </code></pre> <p>Watch out for uploaded viruses :)</p> http://stackoverflow.com/questions/1850060/jquery-pass-this-parent-to-method/1850079#1850079 3 Answer by Josh Stodola for JQuery: pass $(this).parent(); to method? Josh Stodola 2009-12-04T22:29:00Z 2009-12-04T22:29:00Z <p>As long as the function understands that the parameter is the jQuery object and not the DOM element itself. If the function expects a DOM element reference, you can easily do that like this...</p> <pre><code>$('.expand').each(function(i){ var _Expand = $(this).parent(); ExpGroupBy(_Expand[0]); // Note the [0] }); </code></pre> http://stackoverflow.com/questions/1847957/use-google-maps-bubble-as-a-custom-tooltip-background 0 Use Google Maps Bubble as a Custom Tooltip Background Josh Stodola 2009-12-04T16:08:08Z 2009-12-04T16:21:07Z <p>I want to use the Google Maps "bubble" in my web site. It pops up when you click on a pin...</p> <p><img src="http://www.deltasys.com/blog/wp-content/uploads/2007/12/dealer%5Flocator%5Fexample.jpg" alt="Google Maps Bubble"></p> <p>Has anybody done this? I can't even find the required image(s) using Firebug. If I can just find the image(s) that powers this bubble, I can handle the rest!</p> http://stackoverflow.com/questions/1847654/iframe-problems/1847816#1847816 1 Answer by Josh Stodola for iframe problems Josh Stodola 2009-12-04T15:46:38Z 2009-12-04T15:46:38Z <p>Try this...</p> <pre><code>top.location.href = 'http://www.google.com'; </code></pre> http://stackoverflow.com/questions/1841916/how-to-avoid-global-variables-in-javascript 1 How to Avoid Global Variables in Javascript Josh Stodola 2009-12-03T18:30:15Z 2009-12-03T22:37:22Z <p>We all know that global variables are anything but best practice. But there are several instances when it is difficult to code without them. What techniques do you use to avoid the use of global variables?</p> <p>For example, given the following scenario, how would you not use a global variable?</p> <p><strong>Javascript:</strong></p> <pre><code>var uploadCount = 0; window.onload = function() { var frm = document.forms[0]; frm.target = "postMe"; frm.onsubmit = function() { startUpload(); return false; } } function startUpload() { var fil = document.getElementById("FileUpload" + uploadCount); if(!fil || fil.value.length == 0) { alert("Finished!"); document.forms[0].reset(); return; } disableAllFileInputs(); fil.disabled = false; alert("Uploading file " + uploadCount); document.forms[0].submit(); } </code></pre> <p><strong>Relevant markup:</strong></p> <pre><code>&lt;iframe src="test.htm" name="postHere" id="postHere" onload="uploadCount++; if(uploadCount &gt; 1) startUpload();"&gt;&lt;/iframe&gt; &lt;!-- MUST use inline Javscript here for onload event to fire after each form submission --&gt; </code></pre> <p>This code comes from a web form with multiple <code>&lt;input type="file"&gt;</code>. It uploads the files one at a time to prevent huge requests. It does this by POSTing to the iframe, waiting for the response which fires the iframe onload, and then triggers the next submission.</p> <p>You don't have to answer this example specifically, I am just providing it for reference to a situation in which I am unable to think of a way to avoid global variables.</p> http://stackoverflow.com/questions/1401498/remove-any-spaces-while-typing-into-a-textbox/1401538#1401538 13 Answer by Josh Stodola for Remove any spaces while typing into a textbox Josh Stodola 2009-09-09T19:18:12Z 2009-12-03T00:03:40Z <pre><code>$(function() { var txt = $("#myTextbox"); var func = function() { txt.val(txt.val().replace(/\s/g, '')); } txt.keyup(func).blur(func); }); </code></pre> <p>You have to additionally handle the <code>blur</code> event because user could use context menu to paste ;)</p> http://stackoverflow.com/questions/1833451/javascript-multiple-file-upload-sequentially-one-at-a-time 1 Javascript Multiple File Upload, Sequentially One at a Time Josh Stodola 2009-12-02T15:02:01Z 2009-12-02T22:10:22Z <p>We have a form with five <code>&lt;input type="file"/&gt;</code> elements that is in production and working great. We get request timeouts and MaxRequestLength exceeded errors on occasion. To prevent these errors, I planned to write some Javascript to upload the files one-at-a-time instead of all at once. Here is how I planned on doing this...</p> <ol> <li>On document.ready, inject a hidden iframe into page</li> <li>Change the <code>&lt;form&gt;</code> to target the iframe</li> <li>Disable all elements on the form (which prevents them from being POSTed)</li> <li>Enable one file-upload at a time and submit the form</li> <li>Wait for the response from the server</li> <li>When server response is printed into iframe, start the next upload</li> <li>When all uploads are done, refresh the page, which will invoke some server-side logic that populates a grid.</li> </ol> <p>My problem is with number 5. Normally I think I could figure this out no problem, but I am just having one of those days where my brain is on strike. Here is my code thus far...</p> <pre><code>$(function() { $("&lt;iframe/&gt;").attr("src", "test.htm").attr("name", "postMe").hide().appendTo("body"); $("form").attr("target", "postMe").submit(function(e) { e.preventDefault(); $("#btnSubmit").attr("disabled", "disabled").val("Please Wait, Files are Uploading"); for(var i = 1; i &lt; 6; i++) { $("input[type=file]").attr("disabled", "disabled"); $("#FileUpload" + i).removeAttr("disabled"); $("form")[0].submit(); // HELP!!! // How do I wait for server before next iteration? } location.reload(true); }); }); </code></pre> <p>What kind of construct do I need here in order to "wait" for the server response before kicking off the next upload?</p> http://stackoverflow.com/questions/1827261/interrupting-post-request/1835379#1835379 0 Answer by Josh Stodola for Interrupting POST request Josh Stodola 2009-12-02T19:55:33Z 2009-12-02T19:55:33Z <p>Try calling <code>Response.Close()</code> instead. This will immediately close the socket connection. You may need to call <code>Response.Flush()</code> before hand.</p> http://stackoverflow.com/questions/1834642/best-practice-for-semicolon-after-every-function-in-javascript/1834670#1834670 0 Answer by Josh Stodola for Best practice for semicolon after every function in javascript? Josh Stodola 2009-12-02T17:54:53Z 2009-12-02T17:54:53Z <p>Just stay consistent! They are not needed, but I personally use them because most minification techniques rely on the semi-colon (for instance, <a href="http://dean.edwards.name/packer/usage/" rel="nofollow">Packer</a>).</p> http://stackoverflow.com/questions/1830024/is-this-an-efficient-way-to-convert-html-to-text-using-jquery/1830040#1830040 1 Answer by Josh Stodola for Is this an efficient way to convert HTML to text using jQuery? Josh Stodola 2009-12-02T01:03:03Z 2009-12-02T14:14:24Z <p>HTML <em>is</em> text.</p> <p><strong>EDIT</strong> Try this...</p> <pre><code>// Get current body text var html = $("body").text(); // Create a new jQuery object out of body text and remove desired elements var text = $(html).remove("script,noscript,style,:hidden").text(); </code></pre> http://stackoverflow.com/questions/1828788/what-gets-disposed-when-sqlcommand-dispose-is-called/1828805#1828805 2 Answer by Josh Stodola for What gets disposed when SqlCommand.Dispose is called? Josh Stodola 2009-12-01T20:47:32Z 2009-12-01T20:47:32Z <p>Looks to me like it calls the base class (Component) Dispose method, and jump-starts garbage collection...</p> <pre><code>Public Sub Dispose(ByVal disposing As Boolean) If disposing Then 'Same as Component.Dispose() SyncLock Me If Me.site IsNot Nothing AndAlso Me.site.Container IsNot Nothing Then Me.site.Container.Remove(Me) End If If Me.events IsNot Nothing Then Dim handler As EventHandler = DirectCast(Me.events.Item(Component.EventDisposed), EventHandler) If handler IsNot Nothing Then handler.Invoke(Me, EventArgs.Empty) End If End If End SyncLock End If GC.SuppressFinalize(Me) End Sub </code></pre> <p>I got this by using <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a>.</p> http://stackoverflow.com/questions/1827458/prototyping-object-in-javascript-breaks-jquery/1827611#1827611 1 Answer by Josh Stodola for Prototyping Object in Javascript breaks jQuery? Josh Stodola 2009-12-01T17:14:04Z 2009-12-01T17:14:04Z <p>You should never extend Object.prototype. It does far more than break jQuery; it completely breaks the "object-as-hashtables" feature of Javascript. Don't do it.</p> <p>You can ask John Resig, and he'll tell you the <a href="http://markmail.org/message/tv7vxcir6w3p2h5e" rel="nofollow">same thing</a>.</p> http://stackoverflow.com/questions/1827492/how-can-we-perform-reset-function-in-master-page-of-aspx-page/1827505#1827505 3 Answer by Josh Stodola for how can we perform reset function in master page of aspx page? Josh Stodola 2009-12-01T16:55:21Z 2009-12-01T16:55:21Z <p>Javascript is case-sensitive. Is it possible that you have your form name wrong? Try to use an index instead...</p> <pre><code>document.forms[0].reset(); </code></pre> <p>Or perhaps you are not sure what <code>reset</code> is supposed to do. It restores each element on the form to its default value. It should do <em>exactly</em> what a <code>&lt;input type="reset"/&gt;</code> would do.</p> http://stackoverflow.com/questions/1822448/how-can-i-find-a-control-in-the-footer-template-of-a-data-repeater/1822544#1822544 1 Answer by Josh Stodola for How can i find a control in the footer template of a data repeater Josh Stodola 2009-11-30T21:32:50Z 2009-11-30T21:32:50Z <pre><code>Protected Sub Repeater1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles Repeater1.ItemDataBound If e.Item.ItemType = ListItemType.Footer Then Dim Lit As Literal = CType(e.Item.FindControl("findme"), Literal) End If End Sub </code></pre> http://stackoverflow.com/questions/1822226/socks-client-support/1822239#1822239 1 Answer by Josh Stodola for Socks Client Support Josh Stodola 2009-11-30T20:34:31Z 2009-11-30T20:34:31Z <p>This <a href="http://www.alhem.net/Sockets/" rel="nofollow">wrapper for Berkely Sockets API in C</a> is ironclad.</p> http://stackoverflow.com/questions/1821605/does-jquery-have-the-equivalent-of-dojos-enhanced-select/1821652#1821652 1 Answer by Josh Stodola for Does jQuery have the equivalent of Dojo's enhanced <select>? Josh Stodola 2009-11-30T18:49:13Z 2009-11-30T18:49:13Z <p>Yes, jQuery has an <a href="http://docs.jquery.com/Plugins/Autocomplete" rel="nofollow">AutoComplete</a> plugin</p> http://stackoverflow.com/questions/1820839/using-return-instead-of-else-in-javascript/1820863#1820863 5 Answer by Josh Stodola for Using return instead of else in Javascript Josh Stodola 2009-11-30T16:30:43Z 2009-11-30T16:30:43Z <p>I always go with the first method. Easier to read, and less indentation. As far as execution speed, this will depend on the implementation, but I would expect them both to be identical.</p> http://stackoverflow.com/questions/1890648/styling-anchor-tags-without-hrefs-being-used-to-trigger-javascript-within-page/1890727#1890727 Comment by Josh Stodola on Styling anchor tags without href's--being used to trigger javascript within page Josh Stodola 2009-12-11T21:21:46Z 2009-12-11T21:21:46Z Yes it is called behavioral separation, and it is the thing to do these days. It's much easier to maintain. http://stackoverflow.com/questions/1890648/styling-anchor-tags-without-hrefs-being-used-to-trigger-javascript-within-page/1890667#1890667 Comment by Josh Stodola on Styling anchor tags without href's--being used to trigger javascript within page Josh Stodola 2009-12-11T20:37:48Z 2009-12-11T20:37:48Z Not good for accessiblity because people with Javascript enabled will still see clickable links, but they do nothing. That's not very nice! http://stackoverflow.com/questions/1889932/net-reflector-fail-windows-7-64-bit Comment by Josh Stodola on .NET Reflector Fail - Windows 7 64-bit Josh Stodola 2009-12-11T18:27:04Z 2009-12-11T18:27:04Z Do you even have the framework installed?! http://stackoverflow.com/questions/1889433/selector-selecting-all-tables-on-a-page-in-jquery Comment by Josh Stodola on Selector - Selecting all tables on a page in jQuery Josh Stodola 2009-12-11T17:10:42Z 2009-12-11T17:10:42Z Don't just start using a library. Read the documentation first. DUH! http://stackoverflow.com/questions/1889429/jquery-send-keystroke/1889436#1889436 Comment by Josh Stodola on jQuery: send keystroke Josh Stodola 2009-12-11T17:09:22Z 2009-12-11T17:09:22Z -1 Read the question next time before answering. He wants to trigger the event, not handle it. http://stackoverflow.com/questions/1889429/jquery-send-keystroke Comment by Josh Stodola on jQuery: send keystroke Josh Stodola 2009-12-11T17:08:34Z 2009-12-11T17:08:34Z Obvious: find out what it does when ENTER is pressed, and then do the same thing! http://stackoverflow.com/questions/1889416/what-is-the-easiest-or-quickest-or-smartest-way-to-find-an-answer-for-a-problem-r Comment by Josh Stodola on What is the easiest or quickest or smartest way to find an answer for a problem related to programming? Josh Stodola 2009-12-11T17:05:58Z 2009-12-11T17:05:58Z If you know the answer, then why are you asking the question? Are you just bored?! http://stackoverflow.com/questions/1883450/xml-deserialize Comment by Josh Stodola on xml- Deserialize Josh Stodola 2009-12-10T20:43:46Z 2009-12-10T20:43:46Z Show us the code where you instantiate XmlSerializer http://stackoverflow.com/questions/1883491/updating-textbox-on-the-client-with-javascript-and-reading-the-value-from-the-ser Comment by Josh Stodola on Updating TextBox on the client with Javascript and reading the value from the Server Josh Stodola 2009-12-10T19:49:34Z 2009-12-10T19:49:34Z Are you sure you don't have something in Page_Load that is resetting the textbox value? http://stackoverflow.com/questions/1882429/how-can-i-append-content-to-the-bottom-of-a-fixed-height-div-and-have-it-overflow/1882456#1882456 Comment by Josh Stodola on How can I append content to the bottom of a fixed-height div and have it overflow-y: scroll? Josh Stodola 2009-12-10T17:51:40Z 2009-12-10T17:51:40Z Although you'll still need the bit of Javascript to set the scroll position to the bottom. http://stackoverflow.com/questions/1882429/how-can-i-append-content-to-the-bottom-of-a-fixed-height-div-and-have-it-overflow/1882456#1882456 Comment by Josh Stodola on How can I append content to the bottom of a fixed-height div and have it overflow-y: scroll? Josh Stodola 2009-12-10T17:49:56Z 2009-12-10T17:49:56Z Whoops! Sorry, I forgot about the scrolling. I updated my answer, it's working great in IE. http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox/1876712#1876712 Comment by Josh Stodola on How do I allow CTRL-V (Paste) on a Winforms Textbox? Josh Stodola 2009-12-09T20:44:26Z 2009-12-09T20:44:26Z This will paste when just a V is pressed, right?! http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox Comment by Josh Stodola on How do I allow CTRL-V (Paste) on a Winforms Textbox? Josh Stodola 2009-12-09T20:41:59Z 2009-12-09T20:41:59Z Is the form in question a &quot;child&quot; form? http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox/1876688#1876688 Comment by Josh Stodola on How do I allow CTRL-V (Paste) on a Winforms Textbox? Josh Stodola 2009-12-09T20:36:42Z 2009-12-09T20:36:42Z I updated my answer, please see it. http://stackoverflow.com/questions/1871874/alternatives-for-using-in-href-attribute Comment by Josh Stodola on Alternatives for using "#" in href attribute Josh Stodola 2009-12-09T06:56:31Z 2009-12-09T06:56:31Z Don't upvote duplicate questions!