User jwalkerjr - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T21:07:38Z http://stackoverflow.com/feeds/user/689 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/880986/asp-net-ajaxs-combobox-cannot-programatically-change-the-selected-item 1 ASP.NET AJAX's Combobox - Cannot Programatically Change the Selected Item jwalkerjr 2009-05-19T04:35:51Z 2009-11-04T20:21:59Z <p>I'm using the new Microsoft ASP.NET Ajax Combobox control in my web application and I'm having trouble figuring out how to programatically set the selected list item. For example, I have a form to accept addresses and a combobox to accept a city name. After the user enters and saves and address, I'd like to reset the form, including the comboboxes.</p> <p>With a regular ASP.NET dropdownlist control I can reset the selected item like below:</p> <pre><code>City.SelectedIndex = -1; </code></pre> <p>The ASP.NET AJAX Combobox control, accepts this line of code, but when the page posts back, the previously selected value is still selected. Help would be appreciated.</p> <p>Update: I tried the following to no avail...</p> <pre><code>City.ClearSelection(); </code></pre> http://stackoverflow.com/questions/20684/linq-to-sql-underlying-column-length 4 Linq to SQL - Underlying Column Length jwalkerjr 2008-08-21T18:07:33Z 2009-09-09T04:44:58Z <p>I've been using Linq to SQL for some time now and I find it to be really helpful and easy to use. With other ORM tools I've used in the past, the entity object filled from the database normally has a property indicating the length of the underlying data column in the database. This is helpful in databinding situations where you can set the MaxLength property on a textbox, for example, to limit the length of input entered by the user.</p> <p>I cannot find a way using Linq to SQL to obtain the length of an underlying data column. Does anyone know of a way to do this? Help please.</p> http://stackoverflow.com/questions/880986/asp-net-ajaxs-combobox-cannot-programatically-change-the-selected-item/899801#899801 1 Answer by jwalkerjr for ASP.NET AJAX's Combobox - Cannot Programatically Change the Selected Item jwalkerjr 2009-05-22T20:18:06Z 2009-05-22T20:18:06Z <p>This is an open issue on CodePlex. So, because it's a bug, there's no solution until a patch is issued. Here's the <a href="http://ajaxcontroltoolkit.codeplex.com/WorkItem/View.aspx?WorkItemId=22451" rel="nofollow">issue</a> on CodePlex.</p> http://stackoverflow.com/questions/232622/tortoise-svn-icon-overlays-displaying-everywhere-why 2 Tortoise SVN Icon Overlays Displaying Everywhere...Why? jwalkerjr 2008-10-24T06:13:47Z 2009-04-20T19:36:32Z <p><strong>Update:</strong> So, this turns out to have nothing to do with Tortoise SVN. I use Mozy.com for off-site backups and their new version includes these icon overlays. They can be disabled via the config options...or see here <a href="http://forum.pcmech.com/showthread.php?p=1385433" rel="nofollow">http://forum.pcmech.com/showthread.php?p=1385433</a>. Thanks @OS for the answer.</p> <p>Been using Tortoise SVN for some time on my Vista box. Within the last few days (and after recently upgrading to 1.5.4) the icon overlays are displaying on all files. </p> <p>My exclude path is:</p> <p>*</p> <p>My include paths are:</p> <p>C:\Users\jw\Documents\Visual Studio 2008\Projects\SVNProjects*</p> <p>C:\Users\jw\Documents\VB Projects\SVNProjects*</p> <p>I haven't touched those settings in months. Any ideas? Help. Thanks.</p> http://stackoverflow.com/questions/460389/browser-caching-of-css-files 2 Browser Caching of CSS files jwalkerjr 2009-01-20T07:47:09Z 2009-01-26T22:21:40Z <p>Quick question regarding CSS and the browser. I tried searching SO and found some similar posts, but nothing definitive.</p> <p>I use one or two CSS files in my web projects. These are referenced in the HEAD of my web pages. Once I hit one of my pages, does the CSS get cached so that it's not re-downloaded with each request? I hope so. Do IE, Firefox and Safari handle this differently? If the browser is closed, is the CSS refreshed on the first visit when a new browser instance is opened?</p> http://stackoverflow.com/questions/430573/hide-an-asp-net-menu-item 0 Hide an ASP.NET Menu Item jwalkerjr 2009-01-10T04:51:22Z 2009-01-10T04:54:22Z <p>I have an ASP.NET webforms application with a Menu control. How does one hide a particular menu item via code? I've seen a few articles pointing out how to do it with ASP.Net membership/roles-based security, but this particular use case has nothing to do with that. I simply need a way to programmatically remove a menu item from code. Any help would be appreciated. </p> http://stackoverflow.com/questions/430573/hide-an-asp-net-menu-item/430578#430578 1 Answer by jwalkerjr for Hide an ASP.NET Menu Item jwalkerjr 2009-01-10T04:54:22Z 2009-01-10T04:54:22Z <p>Doh! Ok, I figured it out. The correct syntax is (VB.Net):</p> <pre><code>mnuMyMenu.Items.Remove(mnuMyMenu.Items(1)) </code></pre> http://stackoverflow.com/questions/412300/formsauthentication-signout-does-not-log-the-user-out/412312#412312 1 Answer by jwalkerjr for FormsAuthentication.SignOut() does not log the user out. jwalkerjr 2009-01-05T05:00:13Z 2009-01-05T05:00:13Z <p>Sounds to me like you don't have your web.config authorization section set up properly within . See below for an example.</p> <pre><code>&lt;authentication mode="Forms"&gt; &lt;forms name="MyCookie" loginUrl="Login.aspx" protection="All" timeout="90" slidingExpiration="true"&gt;&lt;/forms&gt; &lt;/authentication&gt; &lt;authorization&gt; &lt;deny users="?" /&gt; &lt;/authorization&gt; </code></pre> http://stackoverflow.com/questions/402299/asp-net-resource-reference-best-practices/402493#402493 3 Answer by jwalkerjr for ASP.NET Resource Reference Best Practices jwalkerjr 2008-12-31T07:49:00Z 2008-12-31T07:55:19Z <p>Hmmm...I disagree with @StevenMcD completely. The tilde always references the root of the web application that you're developing, whereas the relative path notation is based upon your current location within the web application. I think in the long run, if you reorganize or restructure the file locations of the web pages, the tilde notation will make it much easier for you to refactor since you always know that the base path (~) is referring to the root of the web application. You cannot be assured of that if using "../" notation. </p> <p>One other note...the tilde (~) notation is very handy when using user controls and masterpages in ASP.NET. When you drop in a user control onto a webform, that webform can be nested in any part of your application's file structure. Relative paths simply aren't guaranteed to work in that scenarion. By using the tilde notation, all paths can be written in code and will work because they're based on the root of the web application. Hope this helps.</p> <p>By the way, the use of the ~ is not deprecated in any way in ASP.NET.</p> <p>UPDATE: As Cyril mentioned, the ~ is only available to you when using ASP.NET controls. Pure HTML elements won't work with it.</p> http://stackoverflow.com/questions/382248/linkbuttons-not-working-in-asp-net-c-app-production-deployment/385618#385618 1 Answer by jwalkerjr for LinkButtons not working in ASP.net/C# app production deployment jwalkerjr 2008-12-22T05:21:24Z 2008-12-22T05:21:24Z <p>Any chance javascript is disabled in the browser? I've also had trouble like this with certain AV security apps that muck with javascript in the browser.</p> http://stackoverflow.com/questions/370619/how-to-import-mdb-to-sql-server/370648#370648 1 Answer by jwalkerjr for How to import mdb to sql server. jwalkerjr 2008-12-16T07:25:52Z 2008-12-16T07:25:52Z <p>You can also use SQL Server directly to import an Access MDB file into a SQL Server database. In SQL Server 2000, this was done using DTS. In SQL Server 2005/2008, this is done with SSIS.</p> <p>Have a look here for a tutorial:</p> <p><a href="http://www.accelebrate.com/sql_training/ssis_tutorial.htm" rel="nofollow">http://www.accelebrate.com/sql_training/ssis_tutorial.htm</a></p> http://stackoverflow.com/questions/339727/svn-how-do-i-change-the-head-to-a-previous-revision 2 SVN - How do I change the HEAD to a previous revision jwalkerjr 2008-12-04T06:39:25Z 2008-12-04T21:57:51Z <p>We've got a situation where someone (not me...really :)) really screwed up a Commit to our SVN server...lot's of files deleted, etc. </p> <p>Question: What is the technique for making the previous (to the bad Commit) revision the HEAD revision? I've seen discussion here on SO for doing this for 1 file, but we'd like to make it like that last commit never happened. Any ideas?</p> <p>UPDATE: All of these answers seem to be correct. I marked abatishchev's answer as the correct answer simply because I'm using Tortoise SVN and it's the method I actually used. Wish I could mark all of them as the answer. Thanks to all for the assistance. Feel better now ;)</p> http://stackoverflow.com/questions/261004/accessing-sql-on-a-different-port-number-classic-asp-connection-string/261026#261026 0 Answer by jwalkerjr for Accessing SQL on a different port number (classic ASP connection string) jwalkerjr 2008-11-04T05:59:45Z 2008-11-04T05:59:45Z <p>I think we need more information. What are you using to connect to the database? ODBC? OLE DB? Are you connecting through and ODBC DSN? Is the connection string in your ASP code, or is your data access via a VB or COM DLL?</p> http://stackoverflow.com/questions/216007/how-to-determine-total-number-of-open-active-connections-in-ms-sql-server-2005/216122#216122 0 Answer by jwalkerjr for How to determine total number of open/active connections in ms sql server 2005 jwalkerjr 2008-10-19T06:58:29Z 2008-10-19T06:58:29Z <p>If you're PHP app is holding open many SQL Server connections, then, as you may know, you have a problem with your app's database code. It should be releasing/disposing those connections after use and using connection pooling. Have a look here for a decent article on the topic...</p> <p><a href="http://www.c-sharpcorner.com/UploadFile/dsdaf/ConnPooling07262006093645AM/ConnPooling.aspx" rel="nofollow">http://www.c-sharpcorner.com/UploadFile/dsdaf/ConnPooling07262006093645AM/ConnPooling.aspx</a></p> http://stackoverflow.com/questions/159799/vb-net-automating-ms-word-for-spell-check-capabilities/190370#190370 0 Answer by jwalkerjr for VB.Net Automating MS Word for Spell Check Capabilities jwalkerjr 2008-10-10T07:04:50Z 2008-10-10T07:04:50Z <p>My gut reaction to this question, is to simply suggest you go another route. Try using a 3rd party spell-check control. They are relatively inexpensive (and you may find some free controls). At least that way you can control the version of the control included with your app and be able to rely on it's functionality. Quite frankly, I'm surprised this library isn't built into Windows already. Sure it's complicated with all of the languages Windows supports, but these days it's similar to copy/paste in terms of user expectations.</p> http://stackoverflow.com/questions/26137/vbscript-asp-classic/185205#185205 1 Answer by jwalkerjr for VBScript/ASP Classic jwalkerjr 2008-10-08T22:42:54Z 2008-10-08T22:42:54Z <p>I agree with @Cirieno, that the selected answer would not be wise to use in production code, for all of the reasons he mentions. That said, if you have just a little experience, this answer is a good starting point as to the basics.</p> <p>In my ASP experience, I preferred to write my database access layer using VB, compiling down to a DLL and referencing the DLL via VBScript. Tough to debug directly through ASP, but it was a nice way to encapsulate all data access code away from the ASP code.</p> http://stackoverflow.com/questions/136132/better-way-of-manipulating-richtext-in-c/136243#136243 3 Answer by jwalkerjr for Better Way of Manipulating RichText in C#? jwalkerjr 2008-09-25T21:23:39Z 2008-09-25T21:23:39Z <p>I think your technique is a great way to accomplish what you're looking to do. I know what you mean...it feels kind of "dirty" because you're using a Winforms control for something other than it was intended for, but it just works. I've used this technique for years. Interested to see if anyone else has viable options.</p> http://stackoverflow.com/questions/61817/whats-the-best-method-in-asp-net-to-obtain-the-current-domain/61822#61822 -1 Answer by jwalkerjr for What's the best method in ASP.NET to obtain the current domain? jwalkerjr 2008-09-15T03:14:04Z 2008-09-15T03:14:04Z <p>How about:</p> <pre><code>String domain = "http://" + Request.Url.Host </code></pre> http://stackoverflow.com/questions/20684/linq-to-sql-underlying-column-length/21212#21212 0 Answer by jwalkerjr for Linq to SQL - Underlying Column Length jwalkerjr 2008-08-21T21:14:04Z 2008-08-21T21:14:04Z <p>Thanks. Actually both of these answers seem to work. Unfortunately, they seem to look at the Linq attributes generated when the code-generation was done. Although that would seem to be the right thing to do, in my situation we sell software products and occasionally the customer will expand some columns lengths to accommodate their data. Thus, the length of the field as reported using this technique may not always reflect the true length of the underlying data column. Ah well, not Linq to SQL's fault, is it? :)</p> <p>Thanks for the quick answers!</p> http://stackoverflow.com/questions/20450/cleaning-up-rtf-text/20693#20693 0 Answer by jwalkerjr for Cleaning up RTF text jwalkerjr 2008-08-21T18:10:53Z 2008-08-21T18:10:53Z <p>I agree with @Nick's solution. I've used this successfully in past projects and it, "just works".</p> http://stackoverflow.com/questions/16656/creating-tempory-folders/16667#16667 1 Answer by jwalkerjr for Creating tempory folders jwalkerjr 2008-08-19T18:18:02Z 2008-08-19T18:18:02Z <p>As long as the name of the folder doesn't need to be meaningful, how about using a GUID for them?</p> http://stackoverflow.com/questions/880986/asp-net-ajaxs-combobox-cannot-programatically-change-the-selected-item/887436#887436 Comment by jwalkerjr on ASP.NET AJAX's Combobox - Cannot Programatically Change the Selected Item jwalkerjr 2009-05-22T03:09:18Z 2009-05-22T03:09:18Z Tim, actually I'm talking about the new MS Ajax Control Toolkit's ComboBox control. Unfortunately, setting the .SelectedValue property of the control to null still doesn't work. Convinced at this point this is a bug in the control. Wish MS would confirm it, though. http://stackoverflow.com/questions/880986/asp-net-ajaxs-combobox-cannot-programatically-change-the-selected-item/881052#881052 Comment by jwalkerjr on ASP.NET AJAX's Combobox - Cannot Programatically Change the Selected Item jwalkerjr 2009-05-19T05:43:04Z 2009-05-19T05:43:04Z Yes, and that does clear the list items, BUT the selected value STILL displays in the box. http://stackoverflow.com/questions/880986/asp-net-ajaxs-combobox-cannot-programatically-change-the-selected-item/881052#881052 Comment by jwalkerjr on ASP.NET AJAX's Combobox - Cannot Programatically Change the Selected Item jwalkerjr 2009-05-19T05:13:23Z 2009-05-19T05:13:23Z Just tried that and no luck. Previously selected value is still there. Only solution is to re-bind the list, but I'm trying to avoid another database hit. http://stackoverflow.com/questions/556044/how-to-set-dropdownlists-selected-value-inside-a-repeater/556272#556272 Comment by jwalkerjr on How to set DropDownList's selected value inside a Repeater? jwalkerjr 2009-02-24T06:57:52Z 2009-02-24T06:57:52Z @DJ Pirtu Please mark this as the correct answer. http://stackoverflow.com/questions/580704/failed-to-load-viewstate-happening-only-occassionally-tough-to-recreate Comment by jwalkerjr on Failed to load viewstate. Happening only occassionally. Tough to recreate jwalkerjr 2009-02-24T06:53:46Z 2009-02-24T06:53:46Z Are you running this in a web farm? Where the web app is installed on more than one web server? I've heard the machine key must be the same within IIS's metabase if so. http://stackoverflow.com/questions/402299/asp-net-resource-reference-best-practices/402491#402491 Comment by jwalkerjr on ASP.NET Resource Reference Best Practices jwalkerjr 2008-12-31T07:52:00Z 2008-12-31T07:52:00Z Cyril, great answer, however I have to point out one thing. I don't see anything wrong (or not a best practice) in using viewstate with ASP.NET. You've just got to be conscious about the type of application you're building and the number of users. Most of the time it's a non-issue. http://stackoverflow.com/questions/395618/if-else-vs-switch/395653#395653 Comment by jwalkerjr on If/Else vs. Switch jwalkerjr 2008-12-28T07:29:10Z 2008-12-28T07:29:10Z ima, if there are errors, point them out. Sounds like Scott will be happy to correct the post. If not, others who have attained the ability to correct an answer will do so. That's the only way a site like this will work, and it seems, in general, it is working. Or take your ball and go home :) http://stackoverflow.com/questions/382358/how-to-access-a-user-control-in-a-masterpage-from-a-content-page/382782#382782 Comment by jwalkerjr on How to access a user control in a masterpage from a content page? jwalkerjr 2008-12-22T05:19:30Z 2008-12-22T05:19:30Z How is it not a best practice? You're confusing ASP.NET webforms, which this question is about and ASP.NET MVC. This answer is perfectly suitable. http://stackoverflow.com/questions/370619/how-to-import-mdb-to-sql-server/370647#370647 Comment by jwalkerjr on How to import mdb to sql server. jwalkerjr 2008-12-16T07:29:47Z 2008-12-16T07:29:47Z Eduardo, you can accomplish this in code, for sure, but there are better options available. I'm a big fan of not reinventing the wheel. Use known tools when available. As mentioned here, SQL Server has tools (SSIS) for importing data from data sources or MS Access has the SQL Server upsizing tool. http://stackoverflow.com/questions/364101/connect-to-oracle-db-from-vb-2008-application-without-installing-oracle-software/364126#364126 Comment by jwalkerjr on Connect to Oracle DB from VB 2008 application without installing Oracle software? jwalkerjr 2008-12-12T21:03:12Z 2008-12-12T21:03:12Z I don't think so. If memory serves me right, the Oracle client still needs to be installed. http://stackoverflow.com/questions/355358/cant-connect-to-default-web-site-in-iis-6-0 Comment by jwalkerjr on Can't connect to Default Web Site in IIS 6.0 jwalkerjr 2008-12-10T08:33:26Z 2008-12-10T08:33:26Z Can you connect with your actual IP address? http://stackoverflow.com/questions/339727/svn-how-do-i-change-the-head-to-a-previous-revision/339742#339742 Comment by jwalkerjr on SVN - How do I change the HEAD to a previous revision jwalkerjr 2008-12-04T06:50:18Z 2008-12-04T06:50:18Z We have no problem keeping the commit, just want to update the HEAD to the proper code base. Gonna give this a try. Thanks. http://stackoverflow.com/questions/232622/tortoise-svn-icon-overlays-displaying-everywhere-why/232646#232646 Comment by jwalkerjr on Tortoise SVN Icon Overlays Displaying Everywhere...Why? jwalkerjr 2008-10-24T06:33:47Z 2008-10-24T06:33:47Z Bingo! I use Mozy and it updated just a few days ago. Thanks! Now how to turn it off...gonna dig through the Mozy settings. http://stackoverflow.com/questions/232622/tortoise-svn-icon-overlays-displaying-everywhere-why/232628#232628 Comment by jwalkerjr on Tortoise SVN Icon Overlays Displaying Everywhere...Why? jwalkerjr 2008-10-24T06:27:41Z 2008-10-24T06:27:41Z I killed the TSVNCache.exe process to no avail. Icons still showing the overlays. I've checked the Settings dialog as I mentioned in the question. Hmm.