User DOK - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:44:57Z http://stackoverflow.com/feeds/user/27637 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1819802/generic-factorized-data-helpers-system-data-commons-vs-especialized-data-helper/1819829#1819829 0 Answer by DOK for Generic factorized data helpers (system.data.commons) vs especialized data helpers (sql server) performance? DOK 2009-11-30T13:29:24Z 2009-11-30T13:29:24Z <p>I think that the only way to test the performance of the two approaches in your specific situation is to create two separate applications and compare them side by side.</p> <p>If this is too much effort, you could test two scaled-down versions of your application. </p> <p>However, there are often unique factors at work in a large application, and testing a reduced version of the application might not be representative of the result you will get in the full application.</p> http://stackoverflow.com/questions/1819772/adding-postbackurl-to-button-and-allow-code-behind-the-button/1819814#1819814 0 Answer by DOK for Adding PostBackURL to button and allow code behind the button? DOK 2009-11-30T13:26:19Z 2009-11-30T13:26:19Z <p>I believe that you need to execute the code on the second page when you use PostBackURL. For more information on how to do that, see <a href="http://msdn.microsoft.com/en-us/library/ms178139.aspx" rel="nofollow">Cross-Page Posting in ASP.NET Web Pages</a> You will be able to use the data from the first page.</p> <p>If you must take some action on the first page before moving to the second page, you might need to use a different approach from PostBackURL. For example, in your btnSubmit_Click event, write the code that you want executed before the page transfer. Then, use Server.Transfer or Response.Direct to take the user to the second page.</p> http://stackoverflow.com/questions/1816826/asp-net-ajax-toolkit-what-is-the-maximum-number-of-items-in-combobox/1816871#1816871 0 Answer by DOK for ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox? DOK 2009-11-29T21:44:02Z 2009-11-29T21:44:02Z <p>Would it be possible for you to break the list down into categories and use more than one ComboBox? If you added a dropdown to choose the category (geographic region, product group, or some other filter), then the user could choose a category. That would be applied to filter the list displayed in the original, second ComboBox. That would make a much better UI, and you'd be passing a lot less data to the browser.</p> <p>I'm thinking of the Cascading DropDown demonstrated <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDropDown.aspx" rel="nofollow">here.</a></p> http://stackoverflow.com/questions/1816756/how-to-create-an-asp-net-web-farm/1816842#1816842 0 Answer by DOK for How to create an ASP.NET web farm? DOK 2009-11-29T21:34:21Z 2009-11-29T21:34:21Z <p>I would not recommend #2. You will do much better off with a load balancer.</p> <p>Pay attention to session state management. Unless you configure the load balancer to keep each user on the same web server, you will have to use the session state server or database.</p> <p>Also, check your code's usage of Application and Cache variables. These will be different on every web server. If those values are static, you may not have a problem. But if they can change, you can end up with different values on each web server.</p> <p>There used to be a problem with ViewState in 1.x, <a href="http://www.codinghorror.com/blog/archives/000132.html" rel="nofollow">as explained here</a>. I'm not sure if this problem still exists.</p> <p>Then, there are some changes that you need to make to the Machine Key in web.config, as explained <a href="http://msdn.microsoft.com/en-us/library/ms998288.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1816717/add-item-to-databound-dropdownlist/1816737#1816737 4 Answer by DOK for Add item to databound DropDownList DOK 2009-11-29T20:53:57Z 2009-11-29T20:53:57Z <p>To add a new list item to the DropDownList, in the Properties window, click on the ellipses in the Items property. Add a new list item with Text "ALL" &amp; Value -1.</p> <p>Or you can add the list item by adding this markup to the DropDownList:</p> <pre><code>&lt;asp:DropDownList ID="categories" runat="server" ...&gt; &lt;asp:ListItem Value="-1"&gt; ALL &lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; </code></pre> <p>Set the DropDownList's <code>AppendDataBoundItems=True</code> </p> http://stackoverflow.com/questions/1816671/production-test-environment-easy-question/1816706#1816706 0 Answer by DOK for Production/Test Environment easy question DOK 2009-11-29T20:42:27Z 2009-11-29T20:42:27Z <p>To deploy only the .aspx files and bin folder contents from Visual Studio, use the menu Build > Publish > keep the checkbox checked for "Allow this precompiled site to be updatable."</p> <p>This allows you to make minor changes in the .aspx files (especially the HTML) without having to recompile and redeploy the web application. You can change the .aspx files on the web server.</p> <p>To create a test website on the same web server, you can just copy the entire website into a new folder and set the virtual directory in IIS.</p> http://stackoverflow.com/questions/1816443/is-there-a-way-to-track-all-the-queries-that-has-been-executed-by-the-server/1816620#1816620 1 Answer by DOK for Is there a way to track all the queries that has been executed by the server? DOK 2009-11-29T20:11:05Z 2009-11-29T20:11:05Z <p>Here is a free, open-source Profiler tool that might help.</p> <p><a href="http://sqlprofiler.googlepages.com/" rel="nofollow">Profiler for Microsoft SQL Server 2005/2008 Express Edition</a> </p> http://stackoverflow.com/questions/1816280/how-can-i-learn-programming-with-c-and-c/1816302#1816302 0 Answer by DOK for How can i learn programming with c++ and c# DOK 2009-11-29T18:28:02Z 2009-11-29T18:28:02Z <p>This very popular discussion might help you choose. It has a lot of comments and many votes.</p> <p><a href="http://stackoverflow.com/questions/1085134/why-is-c-relatively-harder-to-use-bad-choice-for-a-beginner">Why is C++ relatively “harder” to use/bad choice for a beginner?</a></p> http://stackoverflow.com/questions/1816147/how-do-i-create-a-ribbon-bar-in-wpf/1816156#1816156 2 Answer by DOK for How do I create a ribbon bar in WPF? DOK 2009-11-29T17:39:21Z 2009-11-29T17:39:21Z <p>Check this out: <a href="http://pietschsoft.com/post/2008/10/WPF-Toolkit-adds-Ribbon-Control-to-NET-35-SP1.aspx" rel="nofollow">WPF Toolkit adds Ribbon Control to .NET 3.5 SP1</a></p> http://stackoverflow.com/questions/1816106/sql-server-2005-mdf-ldf-files/1816134#1816134 5 Answer by DOK for sql server 2005 .mdf .ldf files DOK 2009-11-29T17:33:10Z 2009-11-29T17:33:10Z <p>In Management Studio, in Object Explorer, right-click on the Databases folder.</p> <p>Choose Attach...</p> <p>At the top of the section titled "Databases to attach", click the Add button.</p> <p>In the displayed folders and files, navigate to your .mdf file and click on it.</p> <p>Click OK.</p> <p>That's all you have to do.</p> http://stackoverflow.com/questions/1815961/what-are-the-chart-map-options-without-using-xml/1815989#1815989 0 Answer by DOK for What are the chart/map options, without using XML? DOK 2009-11-29T16:33:31Z 2009-11-29T17:06:07Z <p>I am very fond of <a href="http://www.dundas.com/" rel="nofollow">Dundas charts and maps</a>, but they aren't free.</p> <p>Here is a list of <a href="http://csharp-source.net/open-source/charting-and-reporting" rel="nofollow">Open Source Charting &amp; Reporting Tools in C#</a> and <a href="http://www.asp.net/community/control-gallery/browse.aspx?category=7" rel="nofollow">another list for ASP.Net</a>.</p> <p><a href="http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx" rel="nofollow">ASP.Net has a Charting Control</a></p> <p>Here is a tutorial <a href="http://aspnet.4guysfromrolla.com/articles/120804-1.aspx" rel="nofollow">A Look at WebCharts, a Free .NET Charting Control</a> </p> <p><strong>You can find lots of other SO recommendations by searching using tags for <a href="http://stackoverflow.com/questions/tagged/charts">charts</a>, <a href="http://stackoverflow.com/questions/tagged/maps">maps</a> and <a href="http://stackoverflow.com/questions/tagged/graph">graphs</a>.</strong></p> <p><strong>For example, for PHP, this was a very popular question: <a href="http://stackoverflow.com/questions/395541/graphs-charts-in-php">Graphs/Charts in PHP</a></strong></p> http://stackoverflow.com/questions/1813830/display-international-currency/1813842#1813842 1 Answer by DOK for Display international currency DOK 2009-11-28T21:34:37Z 2009-11-28T21:34:37Z <p>This has been a popular issue around here. See if any of these help you out:</p> <p><a href="http://stackoverflow.com/questions/784794/best-practice-format-multiple-currencies">Best Practice - Format Multiple Currencies</a></p> <p><a href="http://stackoverflow.com/questions/850673/proper-currency-format-when-not-displaying-the-native-currency-of-a-culture">Proper currency format when not displaying the native currency of a culture</a></p> <p><a href="http://stackoverflow.com/questions/1071273/currency-formatting/1071302">Currency formatting</a></p> http://stackoverflow.com/questions/1813557/c-list-concurrent-removing-and-adding/1813574#1813574 1 Answer by DOK for C# - List<> concurrent removing and adding DOK 2009-11-28T19:46:59Z 2009-11-28T19:46:59Z <p>Actually, sometimes List&lt;> is thread-safe, and sometimes not, according to <a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">Microsoft</a>:</p> <blockquote> <p>Public static members of this type are thread safe. Any instance members are not guaranteed to be thread safe.</p> </blockquote> <p>but that page goes on to say:</p> <blockquote> <p>Enumerating through a collection is intrinsically not a thread-safe procedure. In the rare case where an enumeration contends with one or more write accesses, the only way to ensure thread safety is to lock the collection during the entire enumeration. To allow the collection to be accessed by multiple threads for reading and writing, you must implement your own synchronization.</p> </blockquote> http://stackoverflow.com/questions/1813450/any-mean-to-filter-dataview-with-a-custom-function/1813468#1813468 0 Answer by DOK for Any mean to filter dataview with a custom function ? DOK 2009-11-28T19:15:21Z 2009-11-28T19:15:21Z <p>Here are some examples of various filters for a DataView named dv:</p> <pre><code>dv.RowFilter = "Country = 'USA'"; dv.RowFilter = "EmployeeID &gt;5 AND Birthdate &lt; #1/31/82#" dv.RowFilter = "Description LIKE '*product*'" dv.RowFilter = "employeeID IN (2,4,5)" </code></pre> <p>The names before the equal sign are names of columns, or fields, in the DataView.</p> http://stackoverflow.com/questions/1813444/how-can-i-find-stackoverflow-answers-in-my-search-results-easier/1813457#1813457 1 Answer by DOK for How can I find StackOverflow answers in my search results easier? DOK 2009-11-28T19:11:23Z 2009-11-28T19:11:23Z <p>This clearly pertains to SO, perhaps belongs on meta.stackoverflow.com</p> http://stackoverflow.com/questions/1813424/c-update-dataset-without-any-primary-key/1813449#1813449 1 Answer by DOK for C#: Update dataset without any primary key DOK 2009-11-28T19:08:25Z 2009-11-28T19:08:25Z <p><a href="http://www.vb-helper.com/howto%5Fnet%5Fupdate%5Fwithout%5Fprimary%5Fkey.html" rel="nofollow">Here's an example</a> in VB, which might give you a general idea.</p> http://stackoverflow.com/questions/1813383/one-css-file-or-individual-css-files-for-each-page/1813410#1813410 2 Answer by DOK for One CSS File or individual CSS files for each page? DOK 2009-11-28T18:58:16Z 2009-11-28T18:58:16Z <p>If you want to have a consistent style across all pages in your website, use one stylesheet for all of the common styles. Otherwise, you may find it quite difficult to maintain many stylesheets. Changes would have to be added to every one of multiple stylesheets. </p> <p>Stylesheets that are used only on a single page could go in separate stylesheets. This might be most useful for large single-page stylesheets and/or stylesheets for infrequently-accessed web pages.</p> <p>Your stylesheets will not be reloaded on every page refresh. If you reference the large, general-purpose stylesheet on your home page, it will only be downloaded once, and cached for future use.</p> http://stackoverflow.com/questions/1813329/error-handling-inside-or-out-of-class/1813382#1813382 0 Answer by DOK for Error handling inside or out of class? DOK 2009-11-28T18:52:11Z 2009-11-28T18:52:11Z <p>I believe that the best approach may be a mixed approach.</p> <p>Perform error handling in the class for problems pertaining to the class. For example, if the property-setters do validation, those errors are detected and thrown from the class.</p> <p>At the web page or form level, you can handle all errors in one method. For an ASP.Net web app, for example, you could use the Page_Error method to catch all exceptions that reach the page. Then, you display the error message text thrown by the class property setter.</p> <p>Alternately, you can include an errorMessage string return value in every method signature. The calling page/form checks for the contents of the errorMessage, and decides what to do based on the context. This requires more coding than the above approach.</p> <p>Sometimes, the class does not know whether the event is actually an error. For example, if a class method selects a record from the database and returns its data, the class doesn't know whether this is an error. If the page/form calling the class method is a search page, then getting no records returned is not an error, it's "record not found", and that information is displayed.</p> http://stackoverflow.com/questions/1813321/what-should-i-name-a-table-that-maps-two-tables-together/1813339#1813339 0 Answer by DOK for What should I name a table that maps two tables together? DOK 2009-11-28T18:40:46Z 2009-11-28T18:40:46Z <p>I would name it with the exact names of the tables being joined = ColorShape.</p> http://stackoverflow.com/questions/1799998/want-to-use-image-in-datagrid-to-show-active-and-inactive-user/1800117#1800117 1 Answer by DOK for Want to use image in datagrid to show active and inactive user? DOK 2009-11-25T21:33:33Z 2009-11-25T21:33:33Z <p>ImageField was introduced in ASP.Net 2.0 for GridView. <a href="http://msdn.microsoft.com/en-us/library/aa479350.aspx" rel="nofollow">Here's a good article explaining it (with screenshots).</a></p> <p>To display an image in a column in a DataGrid in ASP.NET 1.x you have to use a TemplateColumn with an Image Web control inside the TemplateColumn.</p> http://stackoverflow.com/questions/1799376/unhandled-iis-exception-how-can-i-track-it-down/1799398#1799398 0 Answer by DOK for Unhandled IIS Exception - How can I track it down DOK 2009-11-25T19:27:56Z 2009-11-25T19:27:56Z <p>I'm looking at the text "Unable to find assembly 'Company.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'". </p> <p>Are you missing an assembly, or do you have a version problem?</p> http://stackoverflow.com/questions/1797332/creating-global-variables-in-asp-net-using-c/1797390#1797390 0 Answer by DOK for Creating global variables in asp.net using C# DOK 2009-11-25T14:46:05Z 2009-11-25T14:46:05Z <p>In ASP.Net, you can create the equivalent of global variables using the Cache object.</p> <pre><code>Cache["someName"] = "some value"; </code></pre> <p>One benefit of using Cache is that you can put objects in it.</p> <p>Another benefit is that you can alter the value in code.</p> <p>You can also use the Application object, but Cache is preferred because of memory management.</p> <p>As always, you should avoid overuse of these global variables, and minimize their size.</p> http://stackoverflow.com/questions/1785745/visual-studio-immediate-window-how-to-see-more-than-the-first-100-items 1 Visual Studio Immediate window: how to see more than the first 100 items DOK 2009-11-23T20:32:00Z 2009-11-23T20:32:00Z <p>I am trying to see the properties of an object with over 300 properties in the Immediate Window of Visual Studio 2005. Only the first 100 items are displayed, followed by this caption:</p> <pre><code> &lt; More... (The first 100 of 306 items were displayed.) &gt; </code></pre> <p>I am trying to see the rest of the items, but can't figure it out. </p> <p>I realize that I could see these in a Watch window, but that's not the same.</p> http://stackoverflow.com/questions/1765097/sql-copy-row-for-a-list-change-one-column-value/1765132#1765132 1 Answer by DOK for SQL Copy Row for a list, change one column value DOK 2009-11-19T17:37:06Z 2009-11-19T17:37:06Z <p>Do you have access to using SQL Server CLR? You could write your code in C# or VB using the usual loops and get this done quite handily.</p> <p>In the absence of CLR, you could compose a giant SQL string in just about any coding language, and send it to the database. That way, you could use the usual looping (for loop, do loop, foreach).</p> http://stackoverflow.com/questions/1597943/how-to-return-names-in-alphabetical-order/1597967#1597967 0 Answer by DOK for How to return names in alphabetical order? DOK 2009-10-20T23:46:44Z 2009-10-20T23:46:44Z <p><a href="http://www.exampledepot.com/egs/java.util/coll%5FSortList.html" rel="nofollow">Here's an example</a> for you, assuming that you have more than just two names, though it will work for that as well:</p> <pre><code> // Create a list String[] strArray = new String[] {"z", "a", "C"}; List list = Arrays.asList(strArray); // Sort Collections.sort(list); // C, a, z // Case-insensitive sort Collections.sort(list, String.CASE_INSENSITIVE_ORDER); // a, C, z // Reverse-order sort Collections.sort(list, Collections.reverseOrder()); // z, a, C // Case-insensitive reverse-order sort Collections.sort(list, String.CASE_INSENSITIVE_ORDER); Collections.reverse(list); // z, C, a </code></pre> http://stackoverflow.com/questions/1591910/how-to-focus-on-a-form-input-text-field-on-page-load-using-jquery/1591921#1591921 7 Answer by DOK for How to focus on a form input text field on page load using Jquery? DOK 2009-10-20T00:52:41Z 2009-10-20T00:52:41Z <p>Set focus on the first text field:</p> <pre><code> $("input:text:visible:first").focus(); </code></pre> <p>This also does the first text field, but you can change the [0] to another index:</p> <pre><code>$('input[@type="text"]')[0].focus(); </code></pre> <p>Or, you can use the ID:</p> <pre><code>$("#someTextBox").focus(); </code></pre> http://stackoverflow.com/questions/1585927/adding-an-image-to-the-header-of-a-net-datagridview/1586033#1586033 1 Answer by DOK for adding an image to the header of a .net datagridview DOK 2009-10-18T21:04:04Z 2009-10-18T21:04:04Z <p><a href="http://stackoverflow.com/questions/1196400/how-to-display-an-image-in-a-datagridview-column-header">Here's one answer</a> to a similar SO question.</p> <p>or you might find your answer here:</p> <p><a href="http://social.msdn.microsoft.com/forums/en-US/winformsdatacontrols/thread/63ec6688-b1da-462b-accc-14356e74947a/" rel="nofollow">Adding Image to the DataGridView editing column</a></p> <p><a href="http://social.msdn.microsoft.com/forums/en-US/winformsdatacontrols/thread/20a17f95-0089-4148-b3b0-3abef1b0d735" rel="nofollow">How To Insert Image To DataGridView Column Header</a></p> http://stackoverflow.com/questions/1585710/paging-with-jquery-in-asp-net/1585722#1585722 0 Answer by DOK for Paging with Jquery in ASP.NET DOK 2009-10-18T19:00:46Z 2009-10-18T19:00:46Z <p>Perhaps you can use one of these <a href="http://plugins.jquery.com/project/pagination" rel="nofollow">jQuery plugins</a>?</p> http://stackoverflow.com/questions/1585640/add-group-membership-to-custom-membership-roles-provider/1585718#1585718 2 Answer by DOK for Add Group Membership to Custom Membership/Roles provider DOK 2009-10-18T18:58:43Z 2009-10-18T18:58:43Z <p>I wonder if you could use "roles" instead of "groups". Permissions can be handled easily with roles. Usually, a role is something like admin, manager, superuser, user, guest. But couldn't you use roles for your purposes? </p> <p>Here's an explanation of using roles in the Membership provider: <a href="http://msdn.microsoft.com/en-us/library/ms998314.aspx" rel="nofollow">How To: Use Role Manager in ASP.NET 2.0</a>. You can find lots more by searching for "roles" instead of "groups".</p> <p>And in case you don't have the Membership source code as a reference, you can download it from this page <a href="http://msdn.microsoft.com/en-us/library/aa478948.aspx" rel="nofollow">Microsoft ASP.NET 2.0 Providers: Introduction</a> to see how they code for roles in the basic version.</p> http://stackoverflow.com/questions/204653/when-should-a-web-service-not-be-used 8 When should a web service not be used? DOK 2008-10-15T13:14:01Z 2009-10-06T11:13:47Z <p>Using a web service is often an excellent architectural approach. And, with the advent of WCF in .Net, it's getting even better.</p> <p>But, in my experience, some people seem to think that web services should always be used in the data access layer for calls to the database. I don't think that web services are the universal solution.</p> <p>I am thinking of smaller intranet applications with a few dozen users. The web app and its web service are deployed to one web server, not a web farm. There isn't going to be another web app in the future that can use this particular web service. It seems to me that the cost of calling the web service unnecessarily increases the burden on the web server. There is a performance hit to inter-process calls. Maintaining and debugging the code for the web app and the web service is more complicated. So is deployment. I just don't see the advantages of using a web service here.</p> <p>One could test this by creating two versions of the web app, with and without the web service, and do stress testing, but I haven't done it.</p> <p>Do you have an opinion on using web services for small-scale web app's? Any other occasions when web services are not a good architectural choice?</p> http://stackoverflow.com/questions/1819869/how-do-i-reset-an-asp-net-dropdown-on-the-click-of-a-link-using-javascript-no Comment by DOK on How do I reset an ASP.NET dropdown, on the click of a link, using Javascript? No JS Frameworks. DOK 2009-11-30T13:40:26Z 2009-11-30T13:40:26Z What do you mean by &quot;reset&quot;? Do you mean change the selected index? Or change the items in the list? Or something else? http://stackoverflow.com/questions/1816717/add-item-to-databound-dropdownlist/1816737#1816737 Comment by DOK on Add item to databound DropDownList DOK 2009-11-29T21:36:42Z 2009-11-29T21:36:42Z Yeah, omitting that could really mystify you, eh? http://stackoverflow.com/questions/1816671/production-test-environment-easy-question/1816706#1816706 Comment by DOK on Production/Test Environment easy question DOK 2009-11-29T21:35:11Z 2009-11-29T21:35:11Z Glad to help. That's why we're here. http://stackoverflow.com/questions/1816684/how-can-i-get-rid-of-this-vs2005-problem/1816693#1816693 Comment by DOK on How can I get rid of this VS2005 problem? DOK 2009-11-29T20:49:59Z 2009-11-29T20:49:59Z Can you see what's running on port 80 by navigating with your browser to <a href="http://localhost:80" rel="nofollow">localhost:80</a>? http://stackoverflow.com/questions/1816691/how-do-i-resolve-a-canonical-filename-in-windows Comment by DOK on How do I resolve a canonical filename in Windows? DOK 2009-11-29T20:47:09Z 2009-11-29T20:47:09Z You might also try asking about this on serverfault.com or superuser.com http://stackoverflow.com/questions/1816339/how-to-copy-locked-files-device-or-resource-busy-error-on-windows-xp-without-a Comment by DOK on how to copy locked files ( Device or resource busy error) on windows xp without admin permissions DOK 2009-11-29T18:41:56Z 2009-11-29T18:41:56Z You might also try asking on serverfault.com and superuser.com http://stackoverflow.com/questions/1816308/how-to-highlight-html-text-without-wrapping-it-with-tags Comment by DOK on How to highlight HTML text without wrapping it with tags? DOK 2009-11-29T18:33:29Z 2009-11-29T18:33:29Z Why do you want to do this? http://stackoverflow.com/questions/1816193/gridview-update Comment by DOK on Gridview - Update DOK 2009-11-29T17:54:31Z 2009-11-29T17:54:31Z Is this ASP.Net? Which .Net framework version? http://stackoverflow.com/questions/1816088/how-to-get-my-solutions-into-windows-problem-reports-and-solutions Comment by DOK on How To Get My Solutions Into Windows Problem Reports and Solutions DOK 2009-11-29T17:37:22Z 2009-11-29T17:37:22Z I think you might be more likely to get help from the website serverfault.com http://stackoverflow.com/questions/1813613/display-date-and-time/1813675#1813675 Comment by DOK on display date and time DOK 2009-11-28T20:57:14Z 2009-11-28T20:57:14Z It's because my example doesn't show milliseconds that I said it's &quot;close&quot;. You might peruse the choices in the referenced URL to see if something else would work for you. The &quot;100&quot; determines the type of date formatting. Perhaps &quot;109&quot; would be closer? http://stackoverflow.com/questions/1813613/display-date-and-time/1813675#1813675 Comment by DOK on display date and time DOK 2009-11-28T20:47:56Z 2009-11-28T20:47:56Z Sorry, I should have indicated that you would substitute your database field name for GETDATE(). http://stackoverflow.com/questions/1813557/c-list-concurrent-removing-and-adding/1813574#1813574 Comment by DOK on C# - List<> concurrent removing and adding DOK 2009-11-28T20:22:33Z 2009-11-28T20:22:33Z I agree that he should definitely use a lock. Thanks for the clarification. http://stackoverflow.com/questions/1813450/any-mean-to-filter-dataview-with-a-custom-function Comment by DOK on Any mean to filter dataview with a custom function ? DOK 2009-11-28T19:12:28Z 2009-11-28T19:12:28Z Yes, you can filter DataView records. Perhaps you can post your code that didn't work? http://stackoverflow.com/questions/1812896/is-it-better-to-declare-variables-in-the-middle-of-functions-or-just-at-the-begin Comment by DOK on Is it better to declare variables in the middle of functions or just at the beginning? DOK 2009-11-28T16:35:39Z 2009-11-28T16:35:39Z Try this very popular question: <a href="http://stackoverflow.com/questions/318943/where-do-you-declare-variables-the-top-of-a-method-or-when-you-need-them" rel="nofollow" title="where do you declare variables the top of a method or when you need them">stackoverflow.com/questions/318943/&hellip;</a> http://stackoverflow.com/questions/1797332/creating-global-variables-in-asp-net-using-c/1797377#1797377 Comment by DOK on Creating global variables in asp.net using C# DOK 2009-11-27T12:49:37Z 2009-11-27T12:49:37Z Using the Cache object is preferable to using the Application object. The reason is that if memory utilization of the ASP.Net worker process approaches its limit, some Cache will be released to free up memory, but Application will not. Therefore, using Application objects can result in recycling the worker process, while using Cache will avoid that undesirable action.