User Scott - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:59:00Z http://stackoverflow.com/feeds/user/7644 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/640971/setfocus-to-textbox-from-javascript-after-just-creating-the-textbox-with-javascri 0 Setfocus to textbox from javascript after just creating the textbox with javascript? Scott 2009-03-13T00:09:31Z 2009-12-07T07:03:16Z <p>So I just created a textbox with Javascript like this:</p> <p><strong>EDIT: Added the len variable</strong></p> <pre><code>var len = tbl.rows.length; var rtb = tbl.insertRow(len); var cName = rtb.insertCell(0); var cDis = rtb.insertCell(1); var cDur = rtb.insertCell(2); cName.innerHTML = '&lt;input type="text" name="tbName1' + len + '" value="' + selected_text + '" &gt;'; cDis.innerHTML = '&lt;input type="text" name="tbDis1' + len + '" id="tbDis1' + len + '" &gt;'; cDur.innerHTML = '&lt;input type="text" name="tbDur1' + len + '" &gt;'; var txtBox = document.getElementById('tbDist1' + len); txtBox.focus(); </code></pre> <p><strong>EDIT:Changed the second to last line.</strong> Still get this error: txtBox is null txtBox.focus();</p> <p>The last line isn't working. After I create the textbox, I can't set focus to it. Is there any way of doing so?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1834068/download-a-file-from-any-given-url-and-save-it-to-my-machine-with-asp-net 1 Download a file from any given URL and save it to my Machine with ASP.NET Scott 2009-12-02T16:26:32Z 2009-12-02T16:35:07Z <p><strong>Case:</strong> I need to feed my application a URL from any location on the internet. At the other end of the URL will be a file of some sorts. A picture/video/document and I need to save this item to my server automatically <strong>without</strong> a 'save-as' dialog box. </p> <p>This needs to be done in ASP.NET.</p> <p>Im having trouble on how to actually grab that file with asp.net after feeding it a URL... Any help would be great!</p> <p>Thanks all</p> http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code 103 What Easter Eggs have you placed in code? Scott 2008-09-26T15:52:12Z 2009-11-26T18:09:47Z <p>I know it is illegal to place Easter eggs in code via Microsoft's quarrel with the law a few years back. Microsoft has decided that if you place Easter eggs in code, it is an immediate grounds for termination, but they are still out there in the wild. I know I put my name in the code a lot that will never show up to the users, but it is always fun to do.</p> <p>So, what Easter eggs have you seen or placed in your programs/code?</p> <p>One of mine was: <code>Query = [Current_Step] = 'Scott Rocks'</code></p> http://stackoverflow.com/questions/1669177/sql-server-hosting-only-offers-1gb-databases-how-do-i-split-my-data-up 1 SQL Server hosting only offers 1GB databases. How do I split my data up? Scott 2009-11-03T18:16:38Z 2009-11-18T17:40:24Z <p>Using ASP.NET and Windows Stack.</p> <p><strong>Purpose:</strong> Ive got a website that takes in over 1GB of data about every 6 months. So as you can tell my database can become huge.</p> <p><strong>Problem:</strong> Most hosting providers only offer Databases in 1GB increments. This means that every time I go over another 1GB, I will need to create another Database. I have absolutely no experience in this type of setup and Im looking for some advice on what to do?</p> <p><strong>Wondering:</strong></p> <ol> <li>Do I move the membership stuff over to a separate database? This still won't solve much because of the size of the other data I have.</li> <li>Do I archive data into another database? If I do, how to I allow users to access it?</li> <li>If I split the data between two databases, do I name the tables the same?</li> <li>I query all my data with LINQ. So establishing a few different connections wouldn't be a horrible thing.</li> <li>Is there a hosting provider that anyone knows of that can scale their databases?</li> </ol> <p>I just want to know what to do? How can I solve this dilemma? I don't have the advertising dollars coming in to spend more than $50 a month so far... </p> <p>While <a href="http://www.ultimahosts.net/windows/vps/" rel="nofollow">http://www.ultimahosts.net/windows/vps/</a> seems to offer the best solution for the best price, they still split the databases up. So where do I go from here?</p> <p>Again, I am a total amateur to multiple databases. Ive only used one at a time..</p> http://stackoverflow.com/questions/93526/what-is-a-y-combinator/99581#99581 1 Answer by Scott for What is a y-combinator? Scott 2008-09-19T04:13:54Z 2009-11-15T22:16:38Z <p>It's a <a href="http://ycombinator.com/index.html" rel="nofollow">Seeding Angel investor company</a> for Startups!!!!!</p> <p>A great one should I say!</p> http://stackoverflow.com/questions/89987/how-to-naturally-sort-a-dataview-with-something-like-icomparable 1 How to Naturally Sort a DataView with something like IComparable Scott 2008-09-18T04:22:47Z 2009-10-28T23:41:03Z <p>Hey Guys,</p> <p>My DataView is acting funny and it is sorting things alphabetically and I need it to sort things numerically. I have looked all across the web for this one and found many ideas on how to sort it with ICompare, but nothing really solid.</p> <p>So my questions are </p> <ol> <li>How do I implement ICompare on a DataView (Looking for code here).</li> <li>How to correctly decipher from a column full of strings that are actual strings and a column full of numbers(with commas).</li> </ol> <p>I need code to help me out with this one guys. I am more or less lost on the idea of ICompare and how to implement in different scenarios so an over all good explanation would be great.</p> <p>Also, Please don't hand me links. I am looking for solid answers on this one.</p> <p>Some Code that I use.</p> <pre><code> DataView dataView = (DataView)Session["kingdomData"]; dataView.Sort = e.SortExpression + " " + ConvertSortDirectionToSql(e.SortDirection); gvAllData.DataSource = dataView; gvAllData.DataBind(); private string ConvertSortDirectionToSql(SortDirection sortDirection) { string newSortDirection = String.Empty; if (Session["SortDirection"] == null) { switch (sortDirection) { case SortDirection.Ascending: newSortDirection = "ASC"; break; case SortDirection.Descending: newSortDirection = "DESC"; break; } } else { newSortDirection = Session["SortDirection"].ToString(); switch (newSortDirection) { case "ASC": newSortDirection = "DESC"; break; case "DESC": newSortDirection = "ASC"; break; } } Session["SortDirection"] = newSortDirection; return newSortDirection; } </code></pre> http://stackoverflow.com/questions/1049625/sql-how-to-insert-row-without-auto-incrementing-a-id-column 0 SQL-How to Insert Row Without Auto incrementing a ID Column? Scott 2009-06-26T15:06:51Z 2009-10-28T17:27:34Z <p>I have a table that has a forced auto increment column and this column is a very valuable ID that is retained through out the entire app. Sorry to say it was poor development on my part to have this be the auto incrementing column.</p> <p>So, here is the problem. I have to insert into this table an ID for the column that has already been created and removed from the table. Kind of like resurrecting this ID and putting it back into the table.</p> <p>So how can I do this programatically do this without turning the column increment off. Correct me if I am wrong, if I turn it off programatically, It will restart at 0 or 1 and I don't want that to happen...</p> http://stackoverflow.com/questions/647377/resize-and-display-image-from-server-with-asp-net 2 Resize and Display image from server with ASP.NET Scott 2009-03-15T06:12:43Z 2009-09-14T13:10:35Z <p>Hey all,</p> <p>Got a question. I have images hosted on my server. I already know of the method when an image is uploaded to resize it and save, but I have another thought in mind.</p> <ol> <li>I was wondering if there is a way to resize when the image is requested from the user. Not when it was uploaded by the user.</li> </ol> <p>So for example a user goes to upload an image and I DO NOT RESIZE it and save another copy of the resized image. Instead, when the image is requested by the user via an ASP.NET img control/tag it would resize the image on the fly to display it and display it via the img tag/control.</p> <p>Why would I want to do this?</p> <p>To save on disk space. Most servers have a disk space limit, but not a server processing limit. So I would like to save on disk space and use the processing space instead.</p> <p><strong>EDIT:</strong> As a startup website its currently better that I save disk than saving processing time. I don't have much money for large amount of space at this moment. Hopefully it will change when the site launches.</p> <p>Any ideas? Thanks guys and girls.</p> http://stackoverflow.com/questions/777944/how-to-convert-default-aspx-to-http-www-website-com-default-aspx-c 4 How to Convert "~/default.aspx" to "http://www.website.com/default.aspx" C#? Scott 2009-04-22T15:50:47Z 2009-09-04T19:24:58Z <p>I know ASP.NET does this automatically, but for some reason I can't seem to find the method.</p> <p>Help anyone? Just as the title says. </p> <p>If I do a Response.Redirect("~/Default.aspx"), it works, but I don't want to redirect the site. I just want the full URL.</p> <p>Can anyone help me out?</p> http://stackoverflow.com/questions/1263068/help-me-make-this-linq-query-faster-please 1 Help me make this LINQ query faster please? Scott 2009-08-11T21:35:43Z 2009-08-11T21:56:30Z <p>To Set up the scenario, Lets say I have 100000 rows in the table and it grows more and more each day. This queue currently takes over 2 seconds to retrieve only about 40 or 50 rows from the table.</p> <p>The data in this table are grouped by DateTime references so I start off grouping all the data by DateTime because this is the only equal value to other rows in the table. Each group of rows could be anywhere from 1 row to 5 rows MAX. I then select the grouped rows, pick apart the data and display it out to the user. The problem I can see is that I cause an EXIST and a Group by in the SQL. I must select all 40 rows at once to make the queue faster, but I pick each group out in a FOR loop. So how if any way can I make this queue faster? Its the Laggiest of them all and my users are complaining about the 2 second wait time. Please help.</p> <pre><code>(from yy in Data_Captured_Type_Militaries where yy.DateTime_Added &gt;= DateTime.UtcNow.AddHours(-72) (from xx in Data_Captured_Type_Militaries where xx.DateTime_Added &gt;= DateTime.UtcNow.AddHours(-72) group xx by xx.DateTime_Added into gg select gg.Key).Contains(yy.DateTime_Added) select new { yy.Elites, yy.DateTime_Added, yy.Uid, yy.Military_Location, yy.Province_ID, yy.Time_To_Return }).ToList() </code></pre> <p>What it translates to:</p> <pre><code>SELECT [t0].[Elites], [t0].[DateTime_Added], [t0].[uid] AS [Uid],[t0].[Military_Location], [t0].[Province_ID], [t0].[Time_To_Return] FROM [Data_Captured_Type_Military] AS [t0] WHERE (EXISTS ( SELECT NULL AS [EMPTY] FROM ( SELECT [t1].[DateTime_Added] FROM [Data_Captured_Type_Military] AS [t1] WHERE [t1].[DateTime_Added] &gt;= @p0 GROUP BY [t1].[DateTime_Added] ) AS [t2] WHERE [t2].[DateTime_Added] = [t0].[DateTime_Added] )) AND ([t0].[DateTime_Added] &gt;= @p1) </code></pre> http://stackoverflow.com/questions/753582/implementing-and-applying-a-string-split-in-t-sql 0 Implementing and applying a string split in T-SQL Scott 2009-04-15T20:33:40Z 2009-08-04T04:40:38Z <p>I have this statement in T-SQL.</p> <pre><code>SELECT Bay From TABLE where uid in ( select B_Numbers from Info_Step WHERE uid = 'number' ) </code></pre> <p>I am selecting "multiple" <code>BAY</code>s from <code>TABLE</code> where their <code>uid</code> is equal to a string of numbers like this:</p> <pre><code>B_Numbers = 1:45:34:98 </code></pre> <p>Therefore, I should be selecting 4 different <code>BAY</code>s from <code>TABLE</code>. I basically need to split the string <code>1:45:34:98</code> up into 4 different numbers.</p> <p>I'm thinking that Split() would work, but it doesn't and I get a syntax error. Any thoughts from the T-SQL gods would be awesome!</p> http://stackoverflow.com/questions/183310/how-do-i-update-a-gridview-from-a-page-method-from-code-behind 2 How do I Update a GridView from a Page Method from code behind? Scott 2008-10-08T15:11:33Z 2009-08-03T13:29:06Z <p>How do I update a Gridview on a aspx page from a webmethod?</p> <p>Here is my code.</p> <pre><code>[WebMethod] public static string GetDate() { return DateTime.Now.ToString(); } </code></pre> <p>I can't use the "findcontrol" or the "this" methods so I need some help.</p> http://stackoverflow.com/questions/194930/how-do-i-use-linq-containsstring-instead-of-containsstring 4 How do I use LINQ .Contains(string[]) instead of .Contains(string) Scott 2008-10-12T01:14:30Z 2009-07-17T10:03:00Z <p>Hey all.</p> <p>I got one big question.</p> <p>I got a linq query to put it simply looks like this:</p> <pre><code>from xx in table where xx.uid.ToString().Contains(string[]) select xx </code></pre> <p>The values of the string[] array would be numbers like (1,45,20,10,etc...)</p> <p>the Default for .Contains is .Contains(string).</p> <p>I need it to do this instead: .Contains(string[])...</p> <p><strong>Edit:</strong> One user suggested writing an extension class for string[]. I would like to learn how, but any one willing to point me in the right direction?</p> <p><strong>Edit:</strong> The uid would also be a number. Thats why it is converted to a string.</p> <p>Help anyone?</p> http://stackoverflow.com/questions/876092/jquery-tablesorter-comma-digit-parser-not-working 0 JQuery TableSorter Comma-Digit Parser not working Scott 2009-05-18T03:08:59Z 2009-07-06T23:49:32Z <p>Here's my problem,</p> <p>I am currently using the JQuery Table Sorter and I found a Comma-Digit parser on the web. The problem I am having is it doesn't seem to be working.</p> <p>So here is what the column is sorted as:</p> <ol> <li>4,666</li> <li>141,666</li> <li>293</li> <li>341,666</li> <li>346</li> <li>461,676</li> </ol> <p>This should be sorted as</p> <ol> <li>293</li> <li>346</li> <li>4,666</li> <li>141,666</li> <li>341,666</li> <li>461,676</li> </ol> <p>The parser I am using is this:</p> <pre><code>$( function() { $.tablesorter.addParser({ id: "fancyNumber", is: function(s) { return /^[0-9]?[0-9,\.]*$/.test(s); }, format: function(s) { return $.tablesorter.formatFloat(s.replace(/,/g, '')); }, type: "numeric" }); }); </code></pre> <p>I just don't know I am doing wrong. Am I loading it wrong? Is the parser wrong? I need real help here and have been struggling with this problem for a while now.</p> <p><strong>Edit:</strong> Because of how I generate my columns and the columns allowed to be chosen by the user, I would never know which header is in and not. I have tried using the class="{sorter: 'fancyNumber'}" command as stated here: <a href="http://tablesorter.com/docs/example-meta-parsers.html" rel="nofollow">http://tablesorter.com/docs/example-meta-parsers.html</a></p> <p><strong>Edit:</strong>It looks like one of the columns is working correctly, but this column is still having problems. maybe because it has digits and comma seperated digits?</p> http://stackoverflow.com/questions/928845/how-do-i-inject-javascript-with-firefox-extension 0 How do I Inject Javascript with Firefox Extension Scott 2009-05-30T02:38:47Z 2009-05-30T02:42:44Z <p>Hey guys, </p> <p>I am building a Firefox extension and have come a long way. One of the parts of my extension is where I display a DIV at the bottom of the page and I want to put an ad into the div, but for some reason every time it does so, it redirects to another page entirely with the ad on it. So it looks like its not allowing me to insert this code below into the div that sits at the bottom. Any chance anyone can help?</p> <p>This code of course calls the "ad_display.js" file and thats where it does the redirect. Any way I can do this or am I stuck in the water?</p> <p>Thanks!!!</p> <pre><code> &lt;!-- Beginning of Project Wonderful ad code: --&gt; &lt;!-- Ad box ID: 38154 --&gt; &lt;script type="text/javascript"&gt; &lt;!-- var pw_d=document; pw_d.projectwonderful_adbox_id = "38154"; pw_d.projectwonderful_adbox_type = "2"; pw_d.projectwonderful_foreground_color = ""; pw_d.projectwonderful_background_color = ""; //--&gt; &lt;/script&gt; &lt;script type="text/javascript" src="http://www.projectwonderful.com/ad_display.js"&gt;&lt;/script&gt; &lt;!-- End of Project Wonderful ad code. --&gt; </code></pre> http://stackoverflow.com/questions/912596/how-to-turn-a-string-into-a-javascript-function-call 1 How to turn a String into a javascript function call? Scott 2009-05-26T20:31:03Z 2009-05-26T20:52:34Z <p>I got a string like:</p> <pre><code>settings.functionName + '(' + t.parentNode.id + ')'; </code></pre> <p>that I want to translate into a function call like so:</p> <pre><code>clickedOnItem(IdofParent); </code></pre> <p>This of course will have to be done in javascript. When I do an alert on settings.functionName + '(' + t.parentNode.id + ')'; it seems to get everything correct. I just need to call the function that it would translate into.</p> <p>Legend:</p> <p>settings.functionName = clickedOnItem</p> <p>t.parentNode.id = IdofParent</p> http://stackoverflow.com/questions/884942/difference-between-a-local-variable-and-a-variable-called-from-a-method-c 1 Difference between a Local Variable and a Variable Called from a Method? C# Scott 2009-05-19T20:50:12Z 2009-05-19T21:11:17Z <p>I would like to know whats faster. Help me out.</p> <p>I have a variable declared in a Method like so:</p> <pre><code> public static Regex FindNumber() { return new Regex(@"\d+", RegexOptions.IgnoreCase | RegexOptions.Compiled); } </code></pre> <p>As you can see it returns a Regular Expression.</p> <p>I also have another Method that looks like so:</p> <pre><code> private static string TestOne(string RawData) { Regex rgxFindNumber = FindNumber(); Regex rgxFindDays = FindDays(); for (int i = 0; i &lt; mc.Count; i++) { int days = Convert.ToInt32(rgxFindNumber.Match(rgxFindDays.Match(mc[i].Value).Value).Value); } return RawData; } </code></pre> <p>Now is the TestOne Method going to be faster or is TestTwo?</p> <pre><code> private static string TestTwo(string RawData) { for (int i = 0; i &lt; mc.Count; i++) { int days = Convert.ToInt32(FindNumber().Match( FindDays().Match(mc[i].Value).Value).Value); } return RawData; } </code></pre> <p>Now im curious because TestOne Can get called a aweful lot in my code so I would like to know what would be better to implement.</p> <p>Thanks guys.</p> <p><strong>Edit:</strong>The code I am using has an extremely large class. Its a text parser for a text based strategy game. I am trying to refactor it a bit and thats what I am wondering here. If I do create a private variable for the Regex, wouldn't it be run every time the class is accessed? Thats my question to you.</p> http://stackoverflow.com/questions/876092/jquery-tablesorter-comma-digit-parser-not-working/879012#879012 1 Answer by Scott for JQuery TableSorter Comma-Digit Parser not working Scott 2009-05-18T18:00:07Z 2009-05-18T18:17:11Z <p>For anyone that comes across this question. I had to add the class to my header row. So for any header that I wanted to fancy sort, I added this class:</p> <pre><code>&lt;th class=\"{sorter: 'fancyNumber'}\"&gt; </code></pre> <p>This turned on the sorter by default which made it work nice.</p> <p>What made me realize my error in my ways was turning on the debugger like so.</p> <pre><code>$("#tblInfo").tablesorter({debug:true, widgets: ['zebra'], widgetZebra: { css: ['d0', 'd1']} }); </code></pre> http://stackoverflow.com/questions/777825/adding-a-counter-for-number-of-blog-post-views-blogengine-net/794218#794218 1 Answer by Scott for Adding a counter for number of blog post views - BlogEngine.net Scott 2009-04-27T16:11:58Z 2009-04-27T16:11:58Z <p>Bob,</p> <p>Got something for you here. I created it a while back, just never made a post for it. It should be EXACTLY what your looking for.</p> <p><a href="http://www.spoiledtechie.com/post/Top-Post-and-Top-Comment-Widgets-for-BlogEngineNet.aspx" rel="nofollow">Top Posts / Top Comments Widgets</a></p> http://stackoverflow.com/questions/188833/why-is-my-asp-net-autocompleteextender-returning-undefined 0 Why is my ASP.NET AutoCompleteExtender returning undefined? Scott 2008-10-09T19:32:14Z 2009-04-21T07:49:52Z <p>Why am I getting a textbox that returns undefined list of variables?</p> <p>When I run this code:</p> <pre><code> var query = (from tisa in db.TA_Info_Step_Archives where tisa.ta_Serial.ToString().StartsWith(prefixText) select tisa.TA_Serial.ToString()).Distinct().Take(Convert.ToInt32(count)); return query.ToList&lt;string&gt;().ToArray(); </code></pre> <p>I get this XML file:</p> <pre><code>&lt;string&gt;200700160&lt;/string&gt; &lt;string&gt;200700161&lt;/string&gt; &lt;string&gt;200700162&lt;/string&gt; &lt;string&gt;200700163&lt;/string&gt; &lt;string&gt;200700164&lt;/string&gt; &lt;string&gt;200700170&lt;/string&gt; &lt;string&gt;200700171&lt;/string&gt; &lt;string&gt;200700172&lt;/string&gt; &lt;string&gt;200700173&lt;/string&gt; &lt;string&gt;200700174&lt;/string&gt; &lt;string&gt;200700175&lt;/string&gt; &lt;string&gt;200700176&lt;/string&gt; &lt;string&gt;200700177&lt;/string&gt; &lt;string&gt;200700178&lt;/string&gt; &lt;string&gt;200700179&lt;/string&gt; &lt;string&gt;200700180&lt;/string&gt; &lt;string&gt;200700181&lt;/string&gt; &lt;string&gt;200700182&lt;/string&gt; &lt;string&gt;200700183&lt;/string&gt; &lt;string&gt;200700184&lt;/string&gt; </code></pre> <p>BUT, the textbox returns a list of "undefined"....</p> <p>Help please?</p> http://stackoverflow.com/questions/165650/how-to-add-a-tooltip-to-a-td-with-jquery 3 How to add a Tooltip to a "td" with jquery? Scott 2008-10-03T04:00:48Z 2009-04-16T14:06:06Z <p>I need to add a tooltip/alt to a "td" element inside of my tables with jquery.</p> <p>Can someone help me out?</p> <p>I tried:</p> <pre><code> var tTip ="Hello world"; $(this).attr("onmouseover", tip(tTip)); </code></pre> <p>where I have verified that I am using the "td" as "this".</p> <p><strong>Edit:</strong>I am able to capture the "td" element through using the "alert" command and it worked. So for some reason the "tip" function doesn't work. Anyone know why this would be?</p> http://stackoverflow.com/questions/84353/i-need-a-wysiwyg-web-editor-web-based 5 I need a WYSIWYG web editor (Web Based). Scott 2008-09-17T15:17:54Z 2009-03-27T01:10:49Z <p>Read the entire post PLEASE.</p> <p>I am <strong>not</strong> looking for a Windows based editor. I am looking for a web based editor that has some of the following. I know of this <a href="http://stackoverflow.com/questions/5833/looking-for-wysiwyg-html-editor">post</a>, but its not what I want. Please don't mention it.</p> <ol> <li>A <strong>lot of mark up capabilities</strong>. Exp. Bold, Italics, Indent, Left &amp; right align, etc...</li> <li>Has <strong>Live Preview</strong> just by typing, don't want to have to push a button to get it.</li> <li>Looking for a <strong>.NET Editor</strong> or <strong>cross platform editor</strong>.</li> </ol> <p><strong>Point:</strong> I must make it clear that I have seen FCK-Editor, FreeTextBox, tinymce, markdown etc...</p> <p><strong>To Compare:</strong> I am looking for something with the capabilities of <em>TinyMCE</em> but has the live preview of <em>MarkDown</em></p> http://stackoverflow.com/questions/668263/algorithm-question-need-to-dynamically-increment-from-00ff00-to-ff0000-over-time 1 Algorithm Question: Need to dynamically INCREMENT from 00FF00 to FF0000 over TIME, C#/Java Scott 2009-03-20T22:42:48Z 2009-03-22T12:49:49Z <p>Hey all,</p> <p>I want to change the color Bright Green to Dark Red over time (240 hours). The best way I can see is to change the hex combo from 00FF00 to FF0000.</p> <p>I don't know how to dynamically count up to FF0000 from 00FF00 for the life of me. I'm looking over a 10 day period, so most likely over 240 hours to increment.</p> <p>Can anyone help me out?</p> <p>I never took an algorithms class so I think that might have something to do with this problem.</p> <p>If you have a better way to do this, then let me know.</p> <p>I am looking for some kind of code here. Thanks guys. It can be in any language but will inevitably be converted to C#.</p> http://stackoverflow.com/questions/79736/net-gridview-alpha-sorting-it-needs-to-be-numerically-sorted 0 .Net Gridview alpha sorting, it needs to be numerically sorted Scott 2008-09-17T03:42:58Z 2009-03-20T22:45:16Z <p>Hey guys,</p> <p>This is my first real question of need for any of those Gridview experts out there in the .NET world.</p> <p>I an creating a Gridview from codebehind and I am holding a bunch of numerical data in the columns. Although, I do add the comma in the number fields from codebehind. When I load it to the Gridview, I have the sorting ability turned on, BUT the gridview chooses to ALPHA sort rather than sorting numerically because I add in those commas.</p> <p>So I need help. Anyone willing to give this one a shot? I need to change some of my columns in the gridview to numerical sort rather than the alpha sort it is using.</p> http://stackoverflow.com/questions/79736/net-gridview-alpha-sorting-it-needs-to-be-numerically-sorted/668269#668269 0 Answer by Scott for .Net Gridview alpha sorting, it needs to be numerically sorted Scott 2009-03-20T22:45:16Z 2009-03-20T22:45:16Z <p>Instead, I just resorted to the JQUERY Table Sorter.</p> <p>can be found here: <a href="http://tablesorter.com/docs/" rel="nofollow">tablesorter</a></p> http://stackoverflow.com/questions/180985/what-is-tempuri-org 4 What is tempuri.org? Scott 2008-10-08T00:50:36Z 2009-03-20T15:12:11Z <p>Why does tempuri.org exist?</p> <p>Why does each XML Webservice require its own namespace from any other on the web?</p> <p>Thanks guys.</p> http://stackoverflow.com/questions/470866/how-to-sort-data-table-like-fogbugz-cases-table 5 How to Sort Data Table like FogBugz Cases Table Scott 2009-01-22T21:28:51Z 2009-02-14T20:33:11Z <p>Anyone ever see how fogbugz sorts their tables? When you click to sort the column, they actually break the table up into many small tables that have each category of info.</p> <p>Wondering if anyone knows how they do this?</p> <p>Looking to implement this feature.</p> <p>If you take a look through the cases page, and sort you can see what I mean.</p> <p>Any help would be AWESOME!</p> <p>Thanks guys.</p> <p>Still Haven't figured this one out.</p> <p><strong>EDIT:</strong> @Peter, I don't want to postback and recreate a table every time the header title is clicked for a sort. I also want to know if their is a generic solution for this. If I click on the header to sort, by the way of javascript, it seperates the "one" table into many and I want to know if their is any generic solution for this because its just a MUCH better way of viewing a sorted Table.</p> <p><strong>EDIT:</strong> I do need a javascript sorter, but if you look right down at the implementation of fogbugz, it produces a different result...</p> http://stackoverflow.com/questions/475318/how-do-i-get-httphandlers-to-work-on-godaddy 0 How do I get HTTPHandlers to work on Godaddy? Scott 2009-01-24T01:52:04Z 2009-01-24T03:33:30Z <p>I am so frustrated.</p> <p>I have godaddy and I built a Sitemap class to use for my site drinkingfor.com.</p> <p>But the httphandler doesn't seem to be picked up under GoDaddy servers. Need some help.</p> <p>The code works on my Dev machine, but once I move it over to Godaddy it shows up as NOT Found. I swear this is like my last straw with Godaddy.</p> <p>The sitemap file should show up at <a href="http://www.drinkingfor.com/sitemap.axd" rel="nofollow">http://www.drinkingfor.com/sitemap.axd</a>, but as you can see the page is not found. Any help is appreciated.</p> <p>My Web.Config for httphandlers is:</p> <pre><code>&lt;add verb="*" path="sitemap.axd" type="HttpExtensions.SitemapHandler"/&gt; </code></pre> <p>And my Sitemap Class is:</p> <pre><code>public class Sitemap : IHttpHandler { /// &lt;summary&gt; /// Gets a value indicating whether another request can use the &lt;see cref="T:System.Web.IHttpHandler"&gt;&lt;/see&gt; instance. /// &lt;/summary&gt; /// &lt;value&gt;&lt;/value&gt; /// &lt;returns&gt;true if the &lt;see cref="T:System.Web.IHttpHandler"&gt;&lt;/see&gt; instance is reusable; otherwise, false.&lt;/returns&gt; public bool IsReusable { get { return false; } } public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/xml"; using (TextWriter textWriter = new StreamWriter(context.Response.OutputStream, System.Text.Encoding.UTF8)) { XmlTextWriter writer = new XmlTextWriter(textWriter); writer.Formatting = Formatting.Indented; writer.WriteStartDocument(); writer.WriteStartElement("urlset"); writer.WriteAttributeString("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance"); writer.WriteAttributeString("xsi:schemaLocation", "http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"); writer.WriteAttributeString("xmlns", "http://www.sitemaps.org/schemas/sitemap/0.9"); SupportFramework.GlobalDataContext db = new SupportFramework.GlobalDataContext(); var getItem = (from glob in db.Global_Sitemaps select glob); foreach (var item in getItem) { writer.WriteStartElement("url"); writer.WriteElementString("loc", item.url); writer.WriteElementString("changefreq", item.changefreq); writer.WriteElementString("lastmod", item.lastmod.ToString("yyyy-MM-dd"); writer.WriteEndElement(); // url } writer.WriteEndElement(); // urlset } } } public class SiteMap { public SiteMap() { } private enum ChangeFreq { always, hourly, daily, weekly, monthly, yearly, never } /// &lt;summary&gt; /// Adds a Node to the Site Map /// &lt;/summary&gt; /// &lt;param name="url"&gt;URL to add to SiteMap&lt;/param&gt; /// &lt;param name="modified"&gt;true oo false if the item has just been modified.&lt;/param&gt; public static void AddNode(string url, bool modified) { SupportFramework.GlobalDataContext db = new SupportFramework.GlobalDataContext(); var getItem = (from glob in db.Global_Sitemaps where glob.url == url select glob).FirstOrDefault(); if (getItem == null) { SupportFramework.Global_Sitemap globs = new SupportFramework.Global_Sitemap(); globs.url = url; globs.lastmod = DateTime.UtcNow; globs.changefreq = ChangeFreq.monthly.ToString(); db.Global_Sitemaps.InsertOnSubmit(globs); db.SubmitChanges(); } else { switch (modified) { case true: getItem.lastmod = DateTime.UtcNow; TimeSpan span = DateTime.UtcNow.Subtract(getItem.lastmod); if (span.Days &gt; 365) getItem.changefreq = ChangeFreq.yearly.ToString(); else if (span.Days &gt; 31) getItem.changefreq = ChangeFreq.monthly.ToString(); else if (span.Days &gt; 7) getItem.changefreq = ChangeFreq.weekly.ToString(); else if (span.Hours &gt; 24) getItem.changefreq = ChangeFreq.daily.ToString(); else getItem.changefreq = ChangeFreq.hourly.ToString(); db.SubmitChanges(); break; } } } } </code></pre> http://stackoverflow.com/questions/475318/how-do-i-get-httphandlers-to-work-on-godaddy/475434#475434 0 Answer by Scott for How do I get HTTPHandlers to work on Godaddy? Scott 2009-01-24T03:33:30Z 2009-01-24T03:33:30Z <p>I will try it, thank you.</p> <p>But your assumption isn't right about GoDaddy not having axd's mapped. Since I also have BlogEngine.Net and it uses a SLEW of httphandlers so my problem just doesn't make sense.</p> <p>Any other person want to give it a go?</p> http://stackoverflow.com/questions/454601/how-to-count-duplicates-in-list-with-linq 0 How to Count Duplicates in List with LINQ Scott 2009-01-18T03:41:23Z 2009-01-18T05:06:07Z <p>I have a list of items</p> <ul> <li>John ID</li> <li>Matt ID</li> <li>John ID</li> <li>Scott ID</li> <li>Matt ID</li> <li>John ID</li> <li>Lucas ID</li> </ul> <p>I want to shove them back into a list like so which also means I want to sort by the highest number of duplicates.</p> <ul> <li>John ID 3</li> <li>Matt ID 2</li> <li>Scott ID 1</li> <li>Lucas ID 1</li> </ul> <p>Let me know how I can do this with LINQ and C#.</p> <p>Thanks All</p> <p><strong>EDIT 2 Showing Code:</strong></p> <pre><code> List&lt;game&gt; inventory = new List&lt;game&gt;(); drinkingforDataContext db = new drinkingforDataContext(); foreach (string item in tbTitle.Text.Split(' ')) { List&lt;game&gt; getItems = (from dfg in db.drinkingfor_Games where dfg.game_Name.Contains(tbTitle.Text) select new game { gameName = dfg.game_Name, gameID = Boomers.Utilities.Guids.Encoder.EncodeURLs(dfg.uid) }).ToList&lt;game&gt;(); for (int i = 0; i &lt; getItems.Count(); i++) { inventory.Add(getItems[i]); } } var items = (from xx in inventory group xx by xx into g let count = g.Count() orderby count descending select new { Count = count, gameName = g.Key.gameName, gameID = g.Key.gameID }); lvRelatedGames.DataSource = items; lvRelatedGames.DataBind(); </code></pre> <p>This query displays these results:</p> <ul> <li>1 hello world times</li> <li>1 hello world times</li> <li>1 Hello World.</li> <li>1 hello world times</li> <li>1 hello world times</li> <li>1 hello world times</li> <li>1 Hello World.</li> <li>1 hello world times</li> </ul> <p>It gives me the count and name, but it doesn't give me the ID of the game....</p> <p>It should display:</p> <ul> <li>6 hello world times 234234</li> <li>2 Hello World. 23432432</li> </ul> http://stackoverflow.com/questions/362045/virtual-private-server-hosting-with-windows-server-2008-ms-sql/362082#362082 Comment by Scott on Virtual Private Server Hosting with Windows Server 2008 + MS SQL Scott 2009-11-05T16:15:38Z 2009-11-05T16:15:38Z VPS land only OFFERS MS SQL EXPRESS. They stopped using Standard. Just a heads up... http://stackoverflow.com/questions/1669177/sql-server-hosting-only-offers-1gb-databases-how-do-i-split-my-data-up/1669324#1669324 Comment by Scott on SQL Server hosting only offers 1GB databases. How do I split my data up? Scott 2009-11-05T16:02:38Z 2009-11-05T16:02:38Z ya, I guess your right. lol. Oops... http://stackoverflow.com/questions/1669177/sql-server-hosting-only-offers-1gb-databases-how-do-i-split-my-data-up/1669324#1669324 Comment by Scott on SQL Server hosting only offers 1GB databases. How do I split my data up? Scott 2009-11-05T15:36:55Z 2009-11-05T15:36:55Z Can one Database grow into 1 Terabyte and still be alright? Do you know any hosting provider that can offer that or is that when I should buy my own server? Or rent one? http://stackoverflow.com/questions/1263068/help-me-make-this-linq-query-faster-please/1263167#1263167 Comment by Scott on Help me make this LINQ query faster please? Scott 2009-08-12T00:09:08Z 2009-08-12T00:09:08Z Good point Ryan... Thanks for the great Eye! I took out that center part and it works the same exact way... Thanks for the good eye! http://stackoverflow.com/questions/1263068/help-me-make-this-linq-query-faster-please Comment by Scott on Help me make this LINQ query faster please? Scott 2009-08-11T21:43:51Z 2009-08-11T21:43:51Z Thanks Jimmy, but that sure doesn't help. lol http://stackoverflow.com/questions/1049625/sql-how-to-insert-row-without-auto-incrementing-a-id-column Comment by Scott on SQL-How to Insert Row Without Auto incrementing a ID Column? Scott 2009-06-26T15:48:58Z 2009-06-26T15:48:58Z MS-SQL server for this question... http://stackoverflow.com/questions/1049625/sql-how-to-insert-row-without-auto-incrementing-a-id-column/1049658#1049658 Comment by Scott on SQL-How to Insert Row Without Auto incrementing a ID Column? Scott 2009-06-26T15:48:15Z 2009-06-26T15:48:15Z Does it keep the last number for the incremented Identity? I don't want it to reset the entire Identity column it self... http://stackoverflow.com/questions/928845/how-do-i-inject-javascript-with-firefox-extension/928851#928851 Comment by Scott on How do I Inject Javascript with Firefox Extension Scott 2009-05-30T03:18:54Z 2009-05-30T03:18:54Z Thank you, I worked with number 1. http://stackoverflow.com/questions/422234/what-is-the-best-way-to-access-asp-net-session-data-using-javascript Comment by Scott on What is the best way to access ASP.net Session Data using JavaScript? Scott 2009-05-27T03:15:42Z 2009-05-27T03:15:42Z You should def look at slolife's answer. Its top notch! http://stackoverflow.com/questions/422234/what-is-the-best-way-to-access-asp-net-session-data-using-javascript/422280#422280 Comment by Scott on What is the best way to access ASP.net Session Data using JavaScript? Scott 2009-05-27T03:14:57Z 2009-05-27T03:14:57Z slolife, You just saved me a ton of work. You have no idea how much I was relying on session data for my app and I wanted to convert it to a more of an ajax app! Thank you so much!!! I wish I can vote you up more!. P.S. Its [WebMethod(EnableSession=true)] for C# http://stackoverflow.com/questions/912596/how-to-turn-a-string-into-a-javascript-function-call/912607#912607 Comment by Scott on How to turn a String into a javascript function call? Scott 2009-05-26T20:50:44Z 2009-05-26T20:50:44Z Look at Machines answer. http://stackoverflow.com/questions/912596/how-to-turn-a-string-into-a-javascript-function-call/912642#912642 Comment by Scott on How to turn a String into a javascript function call? Scott 2009-05-26T20:49:39Z 2009-05-26T20:49:39Z I gave the answer to Machine because of the article. Everyone else was saying that Eval was the best method and then Machine chimed in with the article which def puts the Eval item into perspective and makes me decide not to use it. http://stackoverflow.com/questions/912596/how-to-turn-a-string-into-a-javascript-function-call/912631#912631 Comment by Scott on How to turn a String into a javascript function call? Scott 2009-05-26T20:43:38Z 2009-05-26T20:43:38Z Worked well. Even used less code than the eval function call. http://stackoverflow.com/questions/884942/difference-between-a-local-variable-and-a-variable-called-from-a-method-c/884980#884980 Comment by Scott on Difference between a Local Variable and a Variable Called from a Method? C# Scott 2009-05-21T00:39:01Z 2009-05-21T00:39:01Z Thank you for that very last comment. That sure does clear up a lot of things and makes me want to rethink a bit of my code. http://stackoverflow.com/questions/884942/difference-between-a-local-variable-and-a-variable-called-from-a-method-c/884976#884976 Comment by Scott on Difference between a Local Variable and a Variable Called from a Method? C# Scott 2009-05-19T21:40:32Z 2009-05-19T21:40:32Z womp, I would then have about 100 private variables in one class due to its size, but on any instance, only about 3 or 4 or those variables are used each time I created a class. I am a web based programmer, so as far as I know classes are recreated every time a postback is made and a method inside the class is called. Am I correct? So Since I only use 3 or 4 of those newly created variables each time the class is 'created' it would be better for me to put each one into a method. Is that correct?