User Kelsey - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:36:29Z http://stackoverflow.com/feeds/user/8707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810079/different-development-environment-than-test-production-environments/1810209#1810209 1 Answer by Kelsey for Different Development environment than Test & Production environments? Kelsey 2009-11-27T18:51:20Z 2009-11-27T18:51:20Z <p>What is there to gain by using 2008 over 2000 if you know you have get it to work in 2000?</p> <p>There are so many issues with doing this:</p> <ol> <li>Performance could be totally different even with the exact same SQL</li> <li>DTS packages are handled totally different</li> <li>You could unknowingly use code that is incompatible with SQL2000. You would not know until you moved it to test or live and by this point you could have done a lot of wasted development around incompatible code.</li> <li>etc etc etc...</li> </ol> <p>There is absolutely no reason to use a different version for dev than your LIVE environment. It will just end up causing you grief and inconsistencies.</p> http://stackoverflow.com/questions/1194896/linq-query-works-with-null-but-not-int-in-where-clause 2 Linq query works with null but not int? in where clause. Kelsey 2009-07-28T15:25:32Z 2009-11-27T13:54:21Z <p>I have a linq query function like (simplified):</p> <pre><code>public IList&lt;Document&gt; ListDocuments(int? parentID) { return ( from doc in dbContext.Documents where doc.ParentID == parentID select new Document { ID = doc.ID, ParentID = doc.ParentID, Name = doc.SomeOtherVar }).ToList(); } </code></pre> <p>Now for some reason when I pass in null for the parentID (currently only have data with null parentIDs) and I get no results.</p> <p>I copy and paste this query into LinqPad and run the following:</p> <pre><code>from doc in dbContext.Documents where doc.ParentID == null select doc </code></pre> <p>I get back a result set as expected... </p> <p>The actually query has left join's and other joins but I have removed them and tested it and get the same result so the joins are not affecting anything. The app and LinqPad are both connected to the same DB as well.</p> <p><strong>Edit:</strong> Tested with just 'null' in the appliction query and it returns the result as expected so the issue is using null vs int?. I have updated question to make it more useful to others with the same issue to find this thread.</p> http://stackoverflow.com/questions/1801730/session-expiring-and-giving-error-page/1804711#1804711 0 Answer by Kelsey for session expiring and giving error page Kelsey 2009-11-26T16:42:16Z 2009-11-26T16:53:13Z <p>I have solved this in my master page's <code>Page_Load</code>.</p> <p>Each time the <code>Page_Load</code> fires it checks to see that a specific <code>Session</code> value exists (which should be there if a user is signed in properly). If not I redirect to the sign in page.</p> <p>Eg:</p> <pre><code>// Assuming your using master pages (if not you could have this in a base page that all // your pages inherit from. protected void Page_Load(object sender, EventArgs e) { if (Session["SomeKey"] == null) { // Session has expired or person has not signed in so redirect. FormsAuthentication.SignOut(); Session.Abandon(); Response.Redirect("signin.aspx", true); } // If all is good continue and do whatever you normally do. } </code></pre> <p>In your example the session variables might not exist due to the session expiring so your getting null back from all your fetched session keys. You should be validating that they are not null and if so reacting appropriately to the values being null.</p> http://stackoverflow.com/questions/1791214/online-issue-tracking-tool/1791743#1791743 1 Answer by Kelsey for Online Issue Tracking Tool? Kelsey 2009-11-24T17:46:50Z 2009-11-24T17:46:50Z <p>We just switched to using <a href="http://www.fogbugz.com" rel="nofollow">FogBugz</a> for our bug / issue tracking. The discussion forums and wikis are a great feature to use for how-to's, workarounds, etc. You can even setup community users so that your user base can contribute to both the discussion groups and wikis.</p> http://stackoverflow.com/questions/1778460/how-to-clear-the-items-of-a-listview-control-and-datapager/1779123#1779123 2 Answer by Kelsey for how to clear the items of a listview control and datapager Kelsey 2009-11-22T16:02:19Z 2009-11-22T16:02:19Z <p>To clear all the values: </p> <pre><code>// in your .cs lvEmployee.DataSource = null; lvEmployee.DataBind(); </code></pre> <p>To display a message when no data exists implement the <code>EmptyDataTemplate</code>:</p> <pre><code>// in your .aspx &lt;asp:ListView ID="lvEmployee" runat="server"&gt; &lt;EmptyDataTemplate&gt; No data available. &lt;/EmptyDataTemplate&gt; &lt;/asp:ListView&gt; </code></pre> http://stackoverflow.com/questions/1689889/file-create-datetime-getting-duplicated-for-different-files-and-times 2 File create datetime getting duplicated for different files and times Kelsey 2009-11-06T19:42:55Z 2009-11-21T23:48:28Z <p>I have written a service that monitors a file drop location for files from a scanner. The scanner drops all files with the exact same file name (eg. Test.tif) unless that file already exists and then it appends on a timestamp on the end (eg. Test_0809200915301900.tif).</p> <p>So when I process these files I attach a 'tag' to the db entry to reflect this specific file which is the filename plus the file creation timestamp in ticks. Each scanner can produce 1 scan every few seconds at best so precision to the second is sufficient.</p> <p>Here is the code that generates this supposedly unique tag:</p> <pre><code>FileInfo fileInfo = new FileInfo(filePath); string tag = string.Format("{0}_{1}", filename, fileInfo.CreationTimeUtc.Ticks.ToString()); </code></pre> <p>The generated tag would look something like: <code>Test1.tif_633931295923017954</code></p> <p>For some reason though when a bunch of scans come in from the same scanner say over the course of 20 seconds (eg. 1 scan, then 5 seconds later another, then 5 seconds later another, etc) the are getting the exact same file creation time stamp.</p> <p>Eg.</p> <ol> <li>File in: Test1.tif</li> <li>Picked up and stored with tag <code>Test1.tif_633931295923017954</code></li> <li>Test1.tif is deleted.</li> <li>File in: Test1.tif (5 seconds later)</li> <li>Picked up and fail to be stored because generated tag is a duplicate with <code>Test1.tif_633931295923017954</code></li> </ol> <p>How is this possible? The ticks are identical. I inspected the creation time object and it is identical as well even though I physically saw it created 5 seconds after the first one.</p> <p><strong>Edit:</strong> Can anyone recommend a solution to ensuring I am dealing with a unique file? I thought that filename + creation timestamp should be a good enough check but obviously it is not. I don't have the ability to turn off the 'Tunnelling' functionality that Windows is preforming.</p> <p><strong>Edit:</strong> I ended up having the process rename each file and appending a guid. The process that then processed the files looked for files with the guid attached only. This ensured only unique files were processed.</p> http://stackoverflow.com/questions/1776513/binding-a-dropdownlist-and-then-adding-a-new-listitem/1776562#1776562 2 Answer by Kelsey for Binding a dropdownlist and then adding a new listitem Kelsey 2009-11-21T19:54:07Z 2009-11-21T20:01:57Z <pre><code>ddl.Items.Add(new ListItem("yourtext", "yourvalue")); </code></pre> <p>When you set the 'selected' property you are setting it to that ListItem's instance so if you have more ListItems that you are reusing then they will all get the same value which is probably causing the issue you are experiencing.</p> <p>To illustrate the problem see this example with 2 dropdownlists:</p> <pre><code>ListItem item1 = new ListItem("1", "1"); ListItem item2 = new ListItem("2", "2"); ListItem item3 = new ListItem("3", "3"); ddlTest.Items.Add(item1); ddlTest.Items.Add(item2); ddlTest.Items.Add(item3); ddlTest2.Items.Add(item1); ddlTest2.Items.Add(item2); ddlTest2.Items.Add(item3); ddlTest2.SelectedValue = "2"; </code></pre> <p>Setting <code>ddlTest2</code>'s selected value actually sets ddlTest as well since they share the same items list. If you run this bother <code>ddlTest</code> and <code>ddlTest2</code> will have the exact same selected value even though only <code>ddlTest2</code> was set.</p> http://stackoverflow.com/questions/1377605/tooltip-gets-hidden-behind-controls-in-ie6/1773461#1773461 0 Answer by Kelsey for Tooltip gets hidden behind controls in IE6! Kelsey 2009-11-20T21:50:15Z 2009-11-20T21:50:15Z <p>This is an annoying 'feature' of IE6 to get around.</p> <p>What I have done in the past is actually place an iframe directly behind the tooltip at the exact same location and size of the tool tip.</p> <p>Eg of HTML:</p> <pre><code>&lt;iframe id="iframeHint" runat="server" class="PopupHint"&gt;&lt;/iframe&gt; &lt;div runat="server" id="divHint" class="PopupHint"&gt; Tool tip text here. &lt;/div&gt; </code></pre> <p>Eg of CSS used:</p> <pre><code>div.PopupHint { position: absolute; width: 300px; left: -1000px; border: 1px solid #2F4F88; padding: 2px 2px 2px 2px; background-color: #E5ECF9; color: #000000; visibility: hidden; z-index: 1001; } iframe.PopupHint { position: absolute; width: 300px; left: -1000px; padding: 2px 2px 2px 2px; visibility: hidden; z-index: 1000; } </code></pre> <p>The javascript to display the tip would position the tooltip iframe and div at the exact same position with the z-index set to a smaller value to ensure it is behind the text div. The iframe will cover the other controls in IE6.</p> http://stackoverflow.com/questions/1771741/forcing-sub-classes-to-implement-a-method/1771754#1771754 10 Answer by Kelsey for Forcing sub classes to implement a method Kelsey 2009-11-20T16:49:48Z 2009-11-20T17:59:55Z <p>You can have abstract methods in a class with other methods that are implemented. The advantage over an interface is that you can include some code with your class and have the new object be forced to fill in the details for the abstract methods.</p> <pre><code>public abstract class YourClass { // Your class implementation public abstract void DoSomething(int x, int y); public void DoSomethingElse(int a, string b) { // You can implement this here } } </code></pre> http://stackoverflow.com/questions/599745/most-daunting-error-message/1772135#1772135 0 Answer by Kelsey for Most daunting error message? Kelsey 2009-11-20T17:41:47Z 2009-11-20T17:41:47Z <p>FogBugz gives the following error when something goes wrong that is unhandled. I ran into it a bunch of times due to us having a very odd web environment that we were attempting to install into.</p> <blockquote> <p>An internal error occurred in FogBugz. If you are unsure of how to fix this error, and you have made no changes to the source code of FogBugz, please report this error to Fog Creek Software by clicking "Submit."</p> </blockquote> <p>The problem with the message is the part that says,</p> <blockquote> <p>If you are unsure of how to fix this error...</p> </blockquote> <p>It gives no information of what the error is so how could I ever be sure how to fix the error :) It really should give some indication of what is going on or not even bother with that line in the error message.</p> http://stackoverflow.com/questions/1767576/help-with-asp-net-gridview-checkboxfield-binding/1768288#1768288 0 Answer by Kelsey for help with asp.net gridview/checkboxfield binding Kelsey 2009-11-20T04:08:34Z 2009-11-20T04:08:34Z <p>Create a template field with your checkbox in the datagrid.</p> <pre><code>// In your aspx page &lt;asp:CheckBox ID="yourCheckBox" runat="server" OnDataBinding="yourCheckBox_DataBinding" /&gt; // In your codebehind .cs file protected void yourCheckBox_DataBinding(object sender, System.EventArgs e) { CheckBox chk = (CheckBox)(sender); chk.Checked = Convert.ToBoolean(Eval("YourFieldName")); } </code></pre> http://stackoverflow.com/questions/1767475/asp-net-button-use-javascript-return-function/1768085#1768085 1 Answer by Kelsey for asp.net button use javascript return function Kelsey 2009-11-20T03:10:18Z 2009-11-20T03:54:14Z <p>I am not sure how you are going to get the javascript to work because the aspx code is running server side and building the output for your button. By the time the javascript runs the page code has already been built and the button's html and attached javascript as well.</p> <p>Is there anyway to calculate the function server side and then just do:</p> <pre><code>CommandArgument="&lt;%= CalculateLengthServerSide() %&gt;" </code></pre> <p>You don't need to just use the data your binding to, you can call any server side function.</p> <p><strong>Edit:</strong> Try switching your label that stores the quantity to a textbox and making it read only so uses will not mess with it. After the button is clicked, you should be able to find the textbox control and read out the posted value.</p> http://stackoverflow.com/questions/1768000/how-can-i-remove-values-from-a-dropdown-so-they-are-not-there-on-page-submit/1768050#1768050 0 Answer by Kelsey for How can I remove values from a dropdown so they are not there on page submit? Kelsey 2009-11-20T02:59:17Z 2009-11-20T02:59:17Z <p>Sounds like a viewstate issue. Why not set EnableViewState to false as it looks like you don't need it for anything. This will ensure that the DropDownList will never have anything in it when posted back to the server.</p> http://stackoverflow.com/questions/1767903/remove-specified-text-from-beginning-of-lines-only-if-present-c/1768003#1768003 1 Answer by Kelsey for Remove specified text from beginning of lines only if present (C#) Kelsey 2009-11-20T02:47:45Z 2009-11-20T02:53:40Z <p>He simplest method would be to do the following for the whole block of text at once:</p> <pre><code>string uncommentedText = yourText.Trim().Replace("-- ", ""); </code></pre> <p>You could also split the entire text into an array of lines of text and do the following line by line with to ensure a <code>"-- "</code> somewhere in the middle would not be removed:</p> <pre><code>string uncommentedLine = yourLine.Trim().StartsWith("-- ") ? yourLine.Trim().Replace("-- ", "") : yourLine; </code></pre> http://stackoverflow.com/questions/1590129/are-the-any-free-windows-emulators-available-to-test-web-sites-against-an-iphone 0 Are the any free windows emulators available to test web sites against an iPhone? Kelsey 2009-10-19T17:52:54Z 2009-11-19T21:35:27Z <p>I am looking for iPhone emulation software to test a couple of internal web applications against the iPhone. There are a few quirks occuring with iPhone users that would like to fix but I am unsure how to test them.</p> <p>For example one of the issues is that numbers are showing up as phone number links on the iPhone which 99% of the time is incorrect. On regular Windows Safari this doesn't occur.</p> <p>There are also formatting issues with fonts and spacing that occur on no other broswer except the iPhone version of Safari.</p> <p>Emulator must be free and work under Windows. Suggestions?</p> http://stackoverflow.com/questions/1761547/getting-the-dataitem-after-databound-from-listview-datagrid-any-list-in-asp-net/1766056#1766056 0 Answer by Kelsey for Getting the dataItem after DataBound from ListView/DataGrid (any list) in ASP.Net Kelsey 2009-11-19T19:50:04Z 2009-11-19T19:50:04Z <p>You could use a non-visible literal controls in your list view template to store your extra data. You could put anything in there like xml if you have complex objects. This would leverage viewstate though for each row so you would have the same issue as your #4 except you would have it stored at the row level in a control which is saving it's context to the viewstate instead of manually managing the data in the viewstate yourself.</p> <p>I wouldn't recommend #5 because relying on the view's data will cause you to have to revalidate that data server side to make sure someone hasn't messed with it.</p> <p>At some point you need to store the information server side or client side. If you are worried about server side storage or the retreival process being slow as a problem then store it client side but realize this will increase your bandwidth and client side and request processing.</p> <p>You really need to test your specific case to see where you can afford to put the load as there is no magic that will eliminate this load.</p> http://stackoverflow.com/questions/1764647/asp-net-with-vb-listbox-adding-and-removing-items/1765810#1765810 0 Answer by Kelsey for ASP.NET with VB. ListBox adding and removing items Kelsey 2009-11-19T19:14:38Z 2009-11-19T19:21:38Z <p>I will show you a basic example of a <code>TextBox</code>, <code>Button</code> and a <code>ListBox</code>. When the button is clicked the text will be added to the listbox.</p> <pre><code>// in your .aspx file &lt;asp:TextBox ID="yourTextBox" runat="server" /&gt;&lt;br /&gt; &lt;asp:Button ID="yourButton" runat="server" Text="Add" OnClick="yourButton_Click" /&gt;&lt;br /&gt; &lt;asp:ListBox ID="yourListBox" runat="server" /&gt;&lt;br /&gt; // in your codebehind .cs file protected void yourButton_Click(object sender, EventArgs e) { yourListBox.Items.Add(yourTextBox.Text); } </code></pre> <p>If you want to use javascript / jquery to do this your could just omit the server side event and just add the following function to the Click property of the button.</p> <pre><code>$(document).ready(function() { $("#yourButton").click(function() { $("#yourListBox").append( new Option($('input[name=yourTextBox]').val(), 'Add value here if you need a value')); }); }); </code></pre> http://stackoverflow.com/questions/1764677/asp-net-c-gridview-tab-index-issue/1764707#1764707 0 Answer by Kelsey for ASP.NET C# GridView Tab Index issue Kelsey 2009-11-19T16:42:02Z 2009-11-19T16:42:02Z <p>You could assign the TabIndex's for all your controls inside the grid manually on the rowdatabound event. Figure out how many controls you want to tab though on a specific row and then based on the row index just formulate the tab order.</p> http://stackoverflow.com/questions/1764459/how-do-i-create-a-checkbox-list-with-images-in-asp-net/1764607#1764607 2 Answer by Kelsey for How do I create a checkbox list with images in ASP.net? Kelsey 2009-11-19T16:29:03Z 2009-11-19T16:37:35Z <p>Instead of applying a text value to a checkbox control just assign the text value to an HTML <code>img</code> tag.</p> <pre><code>&lt;asp:CheckBox ID="yourCheckBox" runat="server" Text="&lt;img src='yourimage.gif' alt='' title='' /&gt;" /&gt; </code></pre> <p>If this is in sometype of bound control template you could implement the OnDataBinding event for the checkbox and then modify the image based on your datasource contents as well.</p> <p>If your using a checkboxlist control then you could even do it all though code:</p> <pre><code>// in your aspx &lt;asp:CheckBoxList ID="yourList" runat="server"&gt; // in your .cs when you want to load your value assuming you have a list of images foreach (yourCheckBoxDataObject x in youCheckBoxData) { yourList.Items.Add(new ListItem( string.Format("&lt;img src='{0}' alt='' /&gt;", x.YourImageUrl), x.YourValue)); } </code></pre> http://stackoverflow.com/questions/1755600/how-to-bind-data-to-dropdown-control-in-gridview/1760255#1760255 1 Answer by Kelsey for how to bind data to dropdown control in gridview Kelsey 2009-11-19T01:02:41Z 2009-11-19T01:02:41Z <p>Implement the OnDataBinding event for the dropdownlist.</p> <pre><code>// In your aspx page &lt;asp:DropDownList ID="yourDDL" runat="server" DataTextField="yourTextFieldName" DataValueField="yourValueFieldName" OnDataBinding="yourDDL_DataBinding"&gt; &lt;/asp:DropDownList&gt; // In your codebehind .cs file protected void yourDDL_DataBinding(object sender, System.EventArgs e) { DropDownList ddl = (DropDownList)(sender); // This could be a List of objects, DataTable, DataSet, whatever ddl.DataSource = GetCachedData(); ddl.DataBind(); } </code></pre> <p>The <code>GetCachedData()</code> is something you should have so that you are not building or hitting the database each time to get the result that your ddl is being bound to. This is not required though, you could hit the database each time but it cache it reduces the workload each time you switch to edit mode.</p> http://stackoverflow.com/questions/1759735/asp-net-a-panel-control-doesnt-appear-in-a-gridview-column/1760197#1760197 1 Answer by Kelsey for [ASP.NET] A Panel Control doesn't appear in a GridView Column Kelsey 2009-11-19T00:47:40Z 2009-11-19T00:47:40Z <p>I can't really tell what you are trying to do exactly but I don't think you can create a grid out of controls in this manner. Why don't have your grid use a template column and then adjust the template based on the data you bind to instead of binding to a prebuilt UI like you are trying to do?</p> http://stackoverflow.com/questions/1757518/good-exercises-to-transition-from-coding-in-vb-net-to-c/1757562#1757562 1 Answer by Kelsey for Good exercises to transition from coding in VB.NET to C#? Kelsey 2009-11-18T17:11:17Z 2009-11-18T17:11:17Z <p>Wikipedia has a great article on this:</p> <p><a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5FC%5FSharp%5Fand%5FVisual%5FBasic%5F.NET" rel="nofollow">http://en.wikipedia.org/wiki/Comparison_of_C_Sharp_and_Visual_Basic_.NET</a></p> http://stackoverflow.com/questions/1753166/net-javascript-master-pages-garbling-element-name-is-there-a-way-around-it/1753226#1753226 1 Answer by Kelsey for .net javascript master pages garbling element name is there a way around it? Kelsey 2009-11-18T02:25:38Z 2009-11-18T02:25:38Z <p>If you want to use javascript you could make some global variables for your javascript to use that get setup before you execute any of your other javascript calls. I prefer this method as it reduces the amount of inline code you need all over the place to get control IDs and it centralizes it all in one location.</p> <p>So at the beginning of your script code do:</p> <pre><code>// In your javascript var myTextBoxId = "&lt;%= myTextBox.ClientID %&gt;"; var myButtonId = "&lt;%= myButton.ClientID %&gt;"; </code></pre> <p>Then in your javascript code whenever you need to use it you can just do:</p> <pre><code>var myTextBox = document.getElementById(myTextBoxId); var myButton = document.getElementById(myButtonId); </code></pre> <p>Using Jquery will make this even cleaner looking. For example to get a textbox value:</p> <pre><code>var myTextBoxValue = $("#" + myTextBoxId).val(); // or if you dont want to use the initializers to store the ids var myTextBoxValue = $("#" + "&lt;%= myTextBox.ClientID %&gt;").val(); </code></pre> http://stackoverflow.com/questions/1541630/how-to-install-a-windows-service-developed-in-net-3-5/1544623#1544623 1 Answer by Kelsey for How to install a Windows service developed in .NET 3.5? Kelsey 2009-10-09T15:50:39Z 2009-11-17T18:06:00Z <p>It's actually really simple as I just did it a couple of days ago for something I made. </p> <p>So in your service project you want to:</p> <ol> <li>In the solution explorer double click your services .cs file. It should bring up a screen that is all gray and talks about dragging stuff from the toolbox.</li> <li>Then right click on the gray area and select add installer. This will add an installer project file to your project.</li> <li>Then you will have 2 components on the design view of the ProjectInstaller.cs (serviceProcessInstaller1 and serviceInstaller1). You should then setup the properties as you need.</li> </ol> <p>Now you need to make a setup project. The best thing to do is use the setup wizard.</p> <ol> <li>Right click on your solution and add a new project: Add > New Project > Setup and Deployment Projects > Setup Wizard</li> <li>On the second step select "Create a Setup for a Windows Application."</li> <li>On the 3rd step, select "Primary output from..."</li> <li>Click through to Finish.</li> </ol> <p>Now you need to edit your installer to make sure the correct output is included.</p> <ol> <li>Right click on the setup project in your Solution Explorer.</li> <li>Select View > Editor > Custom Actions.</li> <li>Right-click on the Install action in the Custom Actions tree and select 'Add Custom Action...'</li> <li>In the "Select Item in Project" dialog, select Application Folder and click OK.</li> <li>Click OK to select "Primary output from..." option. A new node should be created.</li> <li>Repeat steps 4 - 5 for commit, rollback and uninstall actions.</li> </ol> <p>Now just build your installer and it will produce an MSI and a setup.exe. Choose whichever you want to use to deploy your service.</p> http://stackoverflow.com/questions/1750089/how-to-tell-if-an-ajax-timer-has-gone-off-at-pageload/1750307#1750307 0 Answer by Kelsey for How to tell if an ajax timer has gone off at page_load Kelsey 2009-11-17T17:05:52Z 2009-11-17T17:05:52Z <p>I think this is what your looking for:</p> <p><a href="http://geekswithblogs.net/mahesh/archive/2006/06/27/83264.aspx" rel="nofollow">http://geekswithblogs.net/mahesh/archive/2006/06/27/83264.aspx</a></p> <p>The article explains how to figure out which control caused the post back which in your case would be your timer control.</p> http://stackoverflow.com/questions/1750179/asp-net-repeater-vs-dynamic-creation-of-table-vs-stringbuilder-performance-q/1750217#1750217 0 Answer by Kelsey for ASP.net: Repeater vs. Dynamic Creation of Table vs. StringBuilder - Performance question Kelsey 2009-11-17T16:53:13Z 2009-11-17T16:53:13Z <p>I just answered another question where the user was having similar issues trying to bind to 2k+ records. Maybe there is some pointers there that will help you improve the speed of things:</p> <p><a href="http://stackoverflow.com/questions/1742421/asp-net-binding-big-dataview-to-datagrid/1746184#1746184">http://stackoverflow.com/questions/1742421/asp-net-binding-big-dataview-to-datagrid/1746184#1746184</a></p> http://stackoverflow.com/questions/1742421/asp-net-binding-big-dataview-to-datagrid/1746184#1746184 2 Answer by Kelsey for Asp.net binding big dataview to DataGrid Kelsey 2009-11-17T02:13:10Z 2009-11-17T16:22:28Z <p>Check your query first. Once you have it as fast as you can get it (including possibly pre-caching data nightly in a temp table or something) then move to the ASP.NET code and make that faster.</p> <p>Turn off viewstate for your grid if you can. The viewstate will increase your page size dramatically. Part of your problem will be just serving up the MB's of raw HTML and viewstate and then rendering it.</p> <p>Steps I would take:</p> <ol> <li>Turn off viewstate for the grid</li> <li>If you are using templates in your columns, try and trim them down by combining controls to reduce the amount of duplicate binding that is occuring.</li> <li>Use literal controls in your templates when possible (significantly lighter than labels)</li> <li>Pull out all the styling and make sure you you use css to bring down the page size as well.</li> <li>If your rows have any javascript, consider removing any inline scripts and applying it once the page loads via Jquery or some other method.</li> <li>Think about paging your data</li> </ol> <p>You can get the 2k+ records to work on one page but you will have to make things very tight to do so.</p> <p>Last resort, get rid of the grid and just use a literal control and output raw, clean, tight html directly to it. Make sure to turn off viewstate for the literal control in this case as well.</p> http://stackoverflow.com/questions/1746722/does-including-an-entire-namespace-slow-things-down/1746737#1746737 2 Answer by Kelsey for Does including an entire namespace slow things down? Kelsey 2009-11-17T05:13:16Z 2009-11-17T05:13:16Z <p>It makes no difference... it's purely for readability and in cases where you have naming collisions.</p> http://stackoverflow.com/questions/1727674/div-innerhtml-problem-with-updatepanel/1746229#1746229 0 Answer by Kelsey for div innerHTML problem with updatepanel Kelsey 2009-11-17T02:31:27Z 2009-11-17T02:31:27Z <p>When you do:</p> <pre><code>map_canvas.InnerHtml = showMapWithPoints(); </code></pre> <p>You are overwriting everything, including all your server side controls, within that div.</p> <p>Are you doing anything that requires those controls to be available such as you 'js' and 'div1' controls?</p> http://stackoverflow.com/questions/1744947/inline-data-binding-asp-net-tags-not-executing/1744979#1744979 1 Answer by Kelsey for Inline Data-Binding asp.net tags not executing Kelsey 2009-11-16T21:29:16Z 2009-11-16T21:42:51Z <p>The <code>&lt;%#</code> happens for databinding, the <code>&lt;%=</code> will happen always when the page is being built reglardless of any databinding. It sounds like that is what you are looking for?</p> <p>Also databinding is control level so if you 'DataBind' a grid, it will not databind any other controls. Even embedded templated controls will not be automatically databound when the grid is called unless you wire the up to do so.</p> <p>Try doing the following and see if it corrects your problem:</p> <pre><code>&lt;div runat="server" visible='&lt;%= CallAFunctionThatReturnsBoolean() ? "true" : "false" %&gt;' &gt; </code></pre> <p>If you require it to occur in the databinding event, I prefer to implement OnDataBinding server side as follows:</p> <pre><code>// in your aspx &lt;div runat="server" OnDataBinding="yourDiv_DataBinding"&gt; // in your .cs protected void yourDiv_DataBinding(object sender, EventArgs e) { HtmlControl div = (HtmlControl)(sender); div.Visible = CallAFunctionThatReturnsBoolean(); } </code></pre> http://stackoverflow.com/questions/1778460/how-to-clear-the-items-of-a-listview-control-and-datapager Comment by Kelsey on how to clear the items of a listview control and datapager Kelsey 2009-11-22T16:03:03Z 2009-11-22T16:03:03Z You really should increase your answer accept rate... 39% for almost 100 questions is dismal. http://stackoverflow.com/questions/1757518/good-exercises-to-transition-from-coding-in-vb-net-to-c Comment by Kelsey on Good exercises to transition from coding in VB.NET to C#? Kelsey 2009-11-18T17:09:01Z 2009-11-18T17:09:01Z You should get use to using the ';' :) http://stackoverflow.com/questions/1742421/asp-net-binding-big-dataview-to-datagrid/1746184#1746184 Comment by Kelsey on Asp.net binding big dataview to DataGrid Kelsey 2009-11-17T16:22:50Z 2009-11-17T16:22:50Z Added 2 more steps for you try as well. http://stackoverflow.com/questions/1742421/asp-net-binding-big-dataview-to-datagrid/1742443#1742443 Comment by Kelsey on Asp.net binding big dataview to DataGrid Kelsey 2009-11-17T02:14:37Z 2009-11-17T02:14:37Z Storing the 2000+ records in session will make paging less DB intensive but possibly tax your server if you have a lot of users with many sessions. http://stackoverflow.com/questions/1744947/inline-data-binding-asp-net-tags-not-executing/1744979#1744979 Comment by Kelsey on Inline Data-Binding asp.net tags not executing Kelsey 2009-11-16T22:31:54Z 2009-11-16T22:31:54Z If you go the DataBinding method in my second example then the Visible tag maps directly to a bool so you don't need the conversion to a string snippet. http://stackoverflow.com/questions/1744947/inline-data-binding-asp-net-tags-not-executing/1744979#1744979 Comment by Kelsey on Inline Data-Binding asp.net tags not executing Kelsey 2009-11-16T22:30:57Z 2009-11-16T22:30:57Z No you didn't copy my answer exactly... notice the ? &quot;true&quot; : &quot;false&quot; part???? That takes the value your function returns and maps it to the proper text. http://stackoverflow.com/questions/1502777/get-gridview-dropdownlist-value Comment by Kelsey on Get Gridview dropdownList value Kelsey 2009-11-16T21:12:32Z 2009-11-16T21:12:32Z Wow 40 questions and not one accepted answer... http://stackoverflow.com/questions/1744268/need-help-building-linq-to-sql-expression/1744367#1744367 Comment by Kelsey on Need help building LINQ to SQL Expression Kelsey 2009-11-16T19:42:00Z 2009-11-16T19:42:00Z We both ended up on ScottGu's blog :) http://stackoverflow.com/questions/1689889/file-create-datetime-getting-duplicated-for-different-files-and-times Comment by Kelsey on File create datetime getting duplicated for different files and times Kelsey 2009-11-06T23:23:53Z 2009-11-06T23:23:53Z What is happening is pretty much what Peter Tate's said. I am looking for a solution to get around this problem though. http://stackoverflow.com/questions/1689889/file-create-datetime-getting-duplicated-for-different-files-and-times/1689925#1689925 Comment by Kelsey on File create datetime getting duplicated for different files and times Kelsey 2009-11-06T20:47:38Z 2009-11-06T20:47:38Z So is there any way to get around this? Is there any way to actually figure out the exact time a file was placed in the directory? http://stackoverflow.com/questions/1689889/file-create-datetime-getting-duplicated-for-different-files-and-times/1689997#1689997 Comment by Kelsey on File create datetime getting duplicated for different files and times Kelsey 2009-11-06T20:46:48Z 2009-11-06T20:46:48Z No changing it to use LastWriteTime produces the exact same result. http://stackoverflow.com/questions/1650800/difference-between-using-and-scoping/1651056#1651056 Comment by Kelsey on Difference between 'using' and scoping? Kelsey 2009-10-30T17:17:09Z 2009-10-30T17:17:09Z +1 for a good example. http://stackoverflow.com/questions/1650800/difference-between-using-and-scoping/1650808#1650808 Comment by Kelsey on Difference between 'using' and scoping? Kelsey 2009-10-30T16:37:55Z 2009-10-30T16:37:55Z @Sam: what I ment with typical vs heavier is pretty much what you said in detail but you worded it a lot better. @Will: great comment and exactly what I was curious about the using statement. http://stackoverflow.com/questions/1650800/difference-between-using-and-scoping/1650808#1650808 Comment by Kelsey on Difference between 'using' and scoping? Kelsey 2009-10-30T16:21:44Z 2009-10-30T16:21:44Z Ok so a typical object used to just store a structure of data would not see any benefit from the using clause but an heavier object that implements IDisposable would? http://stackoverflow.com/questions/1443848/customvalidator-does-not-fire/1443959#1443959 Comment by Kelsey on customvalidator does not fire Kelsey 2009-10-27T16:52:55Z 2009-10-27T16:52:55Z You could do this check client side as well with a custom validator so it would fit right in with your client side checks.