User Matt Dawdy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:31:29Z http://stackoverflow.com/feeds/user/232 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/165808/simple-2-way-encryption-for-c 13 Simple 2 way encryption for C# Matt Dawdy 2008-10-03T05:41:31Z 2009-11-12T07:11:52Z <p>I'm looking for very simple encrypt and decrypt functionality for some data. It's not mission critical. I need something to keep honest people honest, but something a little stronger than ROT13 or Base64.</p> <p>I'd prefer something that is already included in the .Net framework 2.0 so I don't have to worry about any external dependencies.</p> <p>Pre-emptive EDIT: I really don't want to have to mess around with public/private keys, etc. I don't know much about encryption, but I do enough to know that anything I wrote would be less than worthless...in fact, I'd probably screw up the math and make it trivial to crack.</p> http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change 5 Billing Client for very small change Matt Dawdy 2009-11-06T03:10:45Z 2009-11-06T08:33:15Z <p>Searching on Stackoverflow and writing this question has taken more time than the change I just made for my client just now, but I'll ask anyway.</p> <p>I got an email from a client asking me to remove 2 trade association images from their index page. From the time I received the email, downloaded the page, deleted the lines, and uploaded the file, this probably took me 3 minutes.</p> <p>Do you charge for this time? How much? Do you log them and then when they reach 15 or 30 minutes, send a bill? What if that takes 3 months to accumulate?</p> http://stackoverflow.com/questions/1597224/ecma-script-as3-cant-do-simple-math-what-gives/1597252#1597252 2 Answer by Matt Dawdy for ECMA Script/AS3 can't do simple math! What gives? Matt Dawdy 2009-10-20T20:55:53Z 2009-10-20T20:55:53Z <p>Floating point inconsistencies are a known problem in many languages. This is because computers aren't designed to handle floating point numbers.</p> <p><a href="http://en.wikipedia.org/wiki/Floating%5Fpoint" rel="nofollow">Have fun</a></p> http://stackoverflow.com/questions/1597183/conversion-from-string-to-type-date-is-not-valid-error/1597221#1597221 2 Answer by Matt Dawdy for Conversion from String to type Date is not valid error Matt Dawdy 2009-10-20T20:50:18Z 2009-10-20T20:50:18Z <p>.Net can't parse that into a valid date. Throw this in a new project and verify that:</p> <pre><code>string sDate = "091120"; DateTime dt = DateTime.MinValue; if (DateTime.TryParse(sDate, out dt)) MessageBox.Show(dt.ToShortDateString()); else MessageBox.Show("Nope"); </code></pre> <p>So, if you KNOW that all your dates are yyMMdd, then use this:</p> <pre><code>DateTime.ParseExact("091120", "yyMMdd", null) </code></pre> <p>How are you getting these dates? Are they guaranteed to be 6 digits in the yyMMdd format?</p> http://stackoverflow.com/questions/1574958/asp-net-page-access-directory-on-another-server 0 ASP.Net page access directory on another server. Matt Dawdy 2009-10-15T20:47:54Z 2009-10-16T16:18:52Z <p>I need to let an aspx.cs file run code to enumerate the contents of a directory on another server altogether. Basically, use a Directory object, etc.</p> <p>Here is what I can piece together (I'm really not a network rights guy at all, so this is all confusing to me.) When a user loads my aspx page, that page, code behind, is actually running under some kind of windows user account. IUSR_ or something. </p> <p>For some reason, the server I need to reach (it's a Page Flex server) will not let me change the "Location" to search for users in so I can't go find /IUSR... and give it rights.</p> <p>Is there some way to pass credentials as I try to enumerate the contents of a remote server's directories?</p> <p>I really hope that made sense.</p> http://stackoverflow.com/questions/1570438/how-could-i-setup-users-in-membership-services-from-a-desktop-application 0 How could I setup users in Membership Services from a Desktop application Matt Dawdy 2009-10-15T05:23:12Z 2009-10-15T05:33:20Z <p>This is odd, but we have written an asp.Net web application (all's well there) but now we are importing a large amount of data, and in this case, users with existing usernames and passwords. The import is being done with a desktop application.</p> <p>I need to take each user from the old system, and create a corresponding user in the new system, and to do that I need to add each of them to asp.net membership services.</p> <p>I'm at a complete loss as to how I can do this from the desktop. I mean, I've got references to System.Web.Security, but what would I put in my App.config?</p> <p>I'm sorry, I don't think I fully understand Membership Services enough to phrase this question all that well. But can someone point me in the right direction please?</p> http://stackoverflow.com/questions/1518288/error-with-subsonic-2-1 0 Error with Subsonic 2.1 Matt Dawdy 2009-10-05T04:43:27Z 2009-10-06T03:22:43Z <p>I'm getting very odd errors when compiling our Data Access library (all subsonic). Errors are </p> <pre><code>Error 35 The type name 'Web' does not exist in the type 'S3.DACL.System' C:\Projects\S3\src\DACL\AspnetUser.cs 369 63 DACL </code></pre> <p>And </p> <pre><code>Error 37 The type name 'ComponentModel' does not exist in the type 'S3.DACL.System' C:\Projects\S3\src\DACL\AspnetPersonalizationPerUserController.cs 19 13 DACL </code></pre> <p>and they are on all of my subsonic generated classes.</p> <p>I've got 2 projects -- a Web project and then a class library called DACL. My web.config subsonic stuff is like this:</p> <pre><code>&lt;connectionStrings&gt; &lt;add name="S3" connectionString="data source=ServerName;initial catalog=Cat1; user id=usenrame;password=password;" /&gt; &lt;/connectionStrings&gt; &lt;SubSonicService defaultProvider="S3"&gt; &lt;providers&gt; &lt;add name="S3" type="SubSonic.SqlDataProvider, SubSonic" connectionStringName="S3" generatedNamespace="S3.DACL"/&gt; &lt;/providers&gt; &lt;/SubSonicService&gt; </code></pre> <p>I had these error earlier tonight, but that was due to a type of the default provider parameter.</p> <p>Anyone have any ideas why I am getting these errors? I'm desparate and have been banging my head against a wall for the last hour.</p> http://stackoverflow.com/questions/1518288/error-with-subsonic-2-1/1523426#1523426 2 Answer by Matt Dawdy for Error with Subsonic 2.1 Matt Dawdy 2009-10-06T03:22:43Z 2009-10-06T03:22:43Z <p>The problem ended up being this: some genius (actually he is pretty smart, he just had a brain fart) was adding tables to the DB (I knew he was doing this). However, I did NOT know that he added a table named "System". Well, that got Subsonic all confused because it made a class called "System".</p> <p>Do NOT do this in your own projects. .Net gets very confused between the System namespace and the class. And no one wins.</p> <p>After I renamed the table, deleted the System.cs and SystemController.cs files, edited the DACL.csproj file by hand (for some reason it wouldn't remove the references to those 2 classes), closed the solution and recompiled, FINALLY it all started working again.</p> <p>This is added to my own list of "is it plugged in" stupid things to look for before I go looking for exotic solutions.</p> <p>Thanks for the advice, TheVillageIdiot and Joe. Your suggestions are still very worthwhile to check.</p> http://stackoverflow.com/questions/1408746/url-rewriting-temporary-solution-asp-net-3-5 0 URL Rewriting, Temporary Solution, ASP.Net 3.5 Matt Dawdy 2009-09-11T02:51:58Z 2009-09-13T10:00:43Z <p>We've got a test site hosted only by IP address. We really need to test some functionality that depends on what subdomain someone is using to get to the site. But of course we can't even USE subdomains with an IP only site.</p> <p>So, one thought I had was that instead of subdomains, we could have the testers open the site with a URL like this: <a href="http://192.168.0.1/smith" rel="nofollow">http://192.168.0.1/smith</a> or <a href="http://192.168.0.1/jones" rel="nofollow">http://192.168.0.1/jones</a> and I would then redirect them to <a href="http://192.168.0.1/default.aspx?site=smith" rel="nofollow">http://192.168.0.1/default.aspx?site=smith</a> etc...</p> <p>Our testers are at the client, and asking them to enter in the querystring would be problematic. Plus, I'd really like to get a quick intro into URL Rewriting.</p> <p>Can anyone give me any idea if what I want to do is possible, and if so, a pointer to some code or explanation or something? </p> <p>We are using asp.net 3.5 and iis6, I believe.</p> <p>Thanks for any help!</p> http://stackoverflow.com/questions/1394161/net-desktop-program-suddenly-starts-erroring-out 0 .Net desktop program suddenly starts erroring out Matt Dawdy 2009-09-08T13:53:14Z 2009-09-08T19:45:12Z <p>A long time ago I wrote a little FTP utility for a client, and it has been working just fine for over a year. The other day, they tell me that they "updated" their machines (including the server where this was installed). Suddenly, my tiny little desktop app started erroring out. Here is the error message:</p> <p>The configuration section 'connectionStrings' has an unexpected declaration</p> <p>Which is interesting because my app doesn't even HAVE a connectionStrings entry in the config file.</p> <p>I do use a 3rd party dll, but from the stacktrace, it appears that it is blowing up when trying to access a property that I made in my own Settings.settings file -- the property is called FTPserver, and not anything to do with my 3rd party dll, PowerTCP.</p> <p>Anyone have any ideas where I can start diagnosing the real issue?</p> <p>EDIT (added a screenshot, then removed it because it didn't help anything)</p> <p>![alt text][1]</p> <p>EDIT2: Damn Image Shack. Here it is typed out: System.Configuration.ConfigurationErrorsException: The configuration section 'connectionStrings' has an unexpected declaration. at System.Configuration.ConfigurationManger.get_ConnectionStrings() at System.Configuration.PrivilegedConfigurationManager.get_ConnectionStrings() at System.Configuration.LocatFileSettingsProvider.GetPropertyValues(SettingsContext contect, SettingsPropertyCollection properties) at System.Configuration.SettingsBase.GetPropertiesFromProvider(SettingsProvider provider) at System.Configuration.SettingsBase.GetPropertyValueByName(String propertyName) at System.Configuration.SettingsBase.get_Item(String propertyName) at System.Configuration.ApplicationSettingsBase.GetPropertyValue(String propertyName) at System.Configuration.ApplicationSettingsBase.get_Item(String propertyName) at FTPAndArchive.Properties.Settings.get_FTPserver() in .Settings.Designer.cs: line 43 at FTPAndArchive.FtpAndArchive..ctor() in FtpAndAchive.cs: line 25 at FTPAndArchive.Program.Main() in .Program.cs: line 21</p> http://stackoverflow.com/questions/1394161/net-desktop-program-suddenly-starts-erroring-out/1394240#1394240 0 Answer by Matt Dawdy for .Net desktop program suddenly starts erroring out Matt Dawdy 2009-09-08T14:07:35Z 2009-09-08T14:07:35Z <p>Well, I told my client to try something as a complete stab in the dark, and they said that all is fine now.</p> <p>They went into the permissions on the folder in question, and added ASPNET as a user, and propagated those permissions down. Now they say that it works.</p> <p>I don't really like that solution. But they are happy because it is up and running now.</p> <p>If anyone has any concrete solution and evidence that it would work, too, I'll accept their answer instead of my own.</p> <p>Thanks MrMarco and MusiGenesis for your time. I hope you don't feel that I've wasted it.</p> http://stackoverflow.com/questions/1358974/wrapping-a-web-project-in-a-solution-file-and-cvs 1 Wrapping a web project in a solution file, and CVS Matt Dawdy 2009-08-31T19:16:25Z 2009-08-31T19:19:52Z <p>This could quite possibly be the dumbest question ever asked. Our client wants us to have a Solution file (one .sln and .suo) neatly put into 1 directory higher than the actual web project. And we don't even have a Web Project file, it's just a website setup in IIS that we open from Visual Studio (2008 in case it matters) by clicking on File -> Open Website and browsing to the root directory (c:\src\clientname\src\web\ -- that's there choice, not mine).</p> <p>Now, how would I wrap this existing web project, without a project file, into a new blank solution located in c:\src\clientname\src\?</p> <p>I love .Net, but sometimes the configuration hoops get me all twisted up...</p> http://stackoverflow.com/questions/853517/change-the-color-of-a-tabbar-on-the-iphone 0 Change the color of a Tabbar on the iPhone Matt Dawdy 2009-05-12T15:54:36Z 2009-08-31T09:10:01Z <p>Our designers want to change the color of the default UITabBar. Of course they do.</p> <p>They want the background to be green, and the icon highlights to be white, as opposed to the black/blue default color scheme.</p> <p>Anyone have any experience or suggestions to do this?</p> http://stackoverflow.com/questions/46582/response-redirect-with-post-instead-of-get 9 Response.Redirect with POST instead of Get? Matt Dawdy 2008-09-05T19:03:46Z 2009-08-30T13:53:45Z <p>We have the requirement to take a form submission and save some data, then redirect the user to a page offsite, but in redirecting, we need to "submit" a form with POST, not GET.</p> <p>I was hoping there was an easy way to accomplish this, but I'm starting to think there isn't. I think I must now create a simple other page, with just the form that I want, redirect to it, populate the form variables, then do a body.onload call to a script that merely calls document.forms[0].submit();</p> <p>Can anyone tell me if there is an alternative? We might need to tweak this later in the project, and it might get sort of complicated, so if there was an easy we could do this all non-other page dependent that would be fantastic.</p> <p>Anyway, thanks for any and all responses.</p> http://stackoverflow.com/questions/1196722/breaking-sql-server-replication 1 Breaking SQL Server Replication Matt Dawdy 2009-07-28T21:04:41Z 2009-07-29T06:41:41Z <p>I've got a new client, blah blah blah, I need to break SQL Server 2000 replication from their home office to another database that they are going to completely drop (at some hosting place, it is no longer needed).</p> <p>The one at the home office is the "Publisher", I believe. Honestly, I think we could just delete the other database and the home office one would run fine, but it would be nice to clean it up a bit and get rid of the publications/subscriptions stuff.</p> <p>The one issues I'm concerned about is the identity insert. On tables with an auto-assigned integer primary key, each database would "reserve" a block of ids that it would use so they wouldn't trample on each other when synching up.</p> <p>So, if I just dump the replication stuff, will the database insert happily until it hits the upper bound of its auto-number range? What happens then? </p> http://stackoverflow.com/questions/1155619/ienumberable-to-something-that-i-can-get-a-count-from 0 IEnumberable to something that I can get a Count from? Matt Dawdy 2009-07-20T20:00:41Z 2009-07-21T10:31:09Z <p>I've got this:</p> <pre><code>private IEnumerable _myList; </code></pre> <p>I need to get a count off of that object. I was previously typing _myList to an array and getting the length, but now we are using this same bit of code with a different kind of object. It's still a Collection type (it's a strongly typed Subsonic Collection object), and everything works great, except for the bit that we need to get the total number of items in the object.</p> <p>I've tried typing it to CollectionBase, and many many other types, but nothing works that will let me get a .Count or .Length or anything like that.</p> <p>Can anyone point me in the right direction?</p> <p>EDIT: I'm not using 3.5, I'm using 2. So, anything dealing with Linq won't work. Sorry for not posting this earlier.</p> http://stackoverflow.com/questions/952771/masterpage-submasterpage-web-form-getting-properties-of-masterpage-in-sub 0 Masterpage -> SubMasterPage -> Web Form...getting properties of Masterpage in sub pages Matt Dawdy 2009-06-04T19:58:56Z 2009-06-04T20:09:03Z <p>I asked a related question on this yesterday, and was told what not to do, but not what I should do.</p> <p>I've got a master page that I'll call "TheMaster". I've got 2 sub master pages "Sub1" and "Sub2". They both have a Masterpage directive of "TheMaster". Web Forms have a Masterpage directive of "Sub1" or "Sub2". These aren't the real names.</p> <p>In "TheMaster", I figure out what page the user is on, find out where in the Web.sitemap they are, and using that, I have the Web.sitemap node and the parent and the parent's parent, if they all exist. I use this to build navigation dynamically and highlight the current page.</p> <p>Now, our designers have several places this navigation appears. Top nav, sub nav, teritiary nav on the left, and a "breadcrumb" style showing home -> parentparentnode -> parentnode -> currentpage</p> <p>I can NOT define all of this in "TheMaster" due to layout constraints.</p> <p>So, in "TheMaster", I find their current node, and save that as a public property of "TheMaster" (along with several other pieces of info.</p> <p>In Sub1, even though it is using "TheMaster" as it's masterpage, it does not appear to be able to find my public properties from "TheMaster".</p> <p>Any ideas on how I can get this info to be available all the way through this house of cards?</p> <p>I've tried </p> <pre><code>Page.Master.myProp (nope) Parent.myProp (nope) </code></pre> <p>I can't think of anyything else to get this to work. "TheMaster" has basically no knowledge of "Sub1", so I can't set a property on Sub1 and have it go down the tree, and the nodes down the tree are apparently oblivious to their parents...???</p> http://stackoverflow.com/questions/942036/masterpage-using-masterpages-and-inheritance 1 MasterPage using Masterpages, and inheritance Matt Dawdy 2009-06-02T21:38:41Z 2009-06-02T22:14:00Z <p>I've got a "Master" Masterpage, and I've got 2 "Sub" Masterpages. Those 2 subs have their masterpage property set to the "Master" Masterpage. All good so far.</p> <p>Well, I was told today to also make Sub1 and Sub2 actually "inherit" from the Master Masterpage. I thought they were being imprecise with their language, but no, she wanted me to change the Class definition to </p> <pre><code>public partial class Sub2 : TheMaster </code></pre> <p>(those aren't the names).</p> <p>So, now I've got Sub1 and Sub2 that are master pages, and have a master page of TheMaster, and ALSO they are of the class of "TheMaster"</p> <p>I'm quite confused by this, and not sure what kinds of effects this will have. It seems to compile and run fine right now, but we are just starting this 6 month project today, and I don't want to get to month 5 and find out that we have a major design flaw.</p> <p>Can anyone tell me that this is totally fine, or that we are completely messed up?</p> <p>I'm scared...hold me.</p> <p>EDIT: Clarification -- the reason she wanted me to also inherit from the master master page is that we set some things in that page, and we want them available to the sub master pages. Things like the current node in the sitemap that the rendered page is, some user account stuff, and much more.</p> http://stackoverflow.com/questions/935370/sql-query-help-update-many-records-from-1-record-in-same-table 0 SQL Query help -- update many records from 1 record in same table Matt Dawdy 2009-06-01T15:41:43Z 2009-06-01T15:44:53Z <p>We've got a table of places. The same place may occur multiple times in our table (bad design, not our choice). We had someone go through and find addresses for each of these places. They only updated one of the many instances of each place.</p> <p>Here is a query that does NOT work, but I think shows what I am trying to do.</p> <pre><code>update places set address1 = places2.address1 inner join places places2 ON places.placename = places2.placename where (places2.address1 &lt;&gt; '' AND places2.address1 is not null) </code></pre> <p>Anyone want to give me a nudge in the right direction?</p> http://stackoverflow.com/questions/883464/errors-from-a-net-3-5-project-show-up-as-net-2-x/883981#883981 1 Answer by Matt Dawdy for Errors from a .NET 3.5 project show up as .NET 2.x Matt Dawdy 2009-05-19T17:10:05Z 2009-05-19T17:10:05Z <p>For more information, I found this post by Scott Hanselman informative:</p> <p><a href="http://www.hanselman.com/blog/HowToSetAnIISApplicationOrAppPoolToUseASPNET35RatherThan20.aspx" rel="nofollow">How to set an IIS Application or AppPool to use ASP.NET 3.5 rather than 2.0</a></p> http://stackoverflow.com/questions/883480/geo-location-and-blocking-access-to-my-app-on-iphone/883938#883938 0 Answer by Matt Dawdy for geo location and blocking access to my app on iPhone Matt Dawdy 2009-05-19T17:01:02Z 2009-05-19T17:01:02Z <p>I think this is not allowed, and by design. If the user doesn't want your app to know where they are, why do you think you have the right to ignore their wishes?</p> http://stackoverflow.com/questions/870631/iphone-map-clickable-non-rectangular-areas 1 iPhone, Map, Clickable non-rectangular areas Matt Dawdy 2009-05-15T20:06:37Z 2009-05-18T17:24:22Z <p>Anyone have any ideas on how I could implement the following on the iPhone? We have a map of the US, and it has different regions (climate regions, I believe) that are different colors. They are not rectangular, and don't follow state or zip or county or any other defined lines. So, our areas a very round-y and not even necessarily contiguous.</p> <p>I would LOVE to give our users the ability to click on their region and I would be able to tell from where they touched what region it was, but for the life of me, short of making many many many rectangles to do a best fit on the curves, I can't figure out how to do this.</p> <p>Any ideas?</p> <p>EDIT: The regions could be as hard as this... <a href="http://www.usna.usda.gov/Hardzone/ushzmap.html" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/761814/iphone-interface-builder-and-delegates 1 iPhone Interface Builder and Delegates Matt Dawdy 2009-04-17T19:18:30Z 2009-05-10T03:14:13Z <p>When I make a sample app (ie, start out with a tab bar application or something), in my MainWindow.xib file, I see 5 items listed -- File's Owner, First Responder, App Delegate, Window, and Tab Bar Controller.</p> <p>If I make another .xib file, and make a delegate for it, and set that File's Owner to my new delegate that I just made, I do NOT see "NewDelegateFile" in the list of...objects(?) for that .xib.</p> <p>This doesn't make sense to me, and I think is a huge part of why I'm not catching on all that quickly to iPhone development.</p> <p>Does anyone care to take the time to explain that little peculiarity to me?</p> http://stackoverflow.com/questions/831850/should-a-database-table-always-have-primary-keys/831937#831937 0 Answer by Matt Dawdy for Should a database table always have primary keys? Matt Dawdy 2009-05-06T21:45:46Z 2009-05-06T21:45:46Z <p>Since I use Subsonic, I always create a primary key for all of my tables. Many DB Abstraction libraries require a primary key to work.</p> <p>Note: that doesn't answer the "Grand Unified Theory" tone of your question, but I'm just saying that in practice, sometimes you MUST make a primary key for every table.</p> http://stackoverflow.com/questions/813207/submit-forms-in-net/813340#813340 0 Answer by Matt Dawdy for submit forms in .NET Matt Dawdy 2009-05-01T21:17:24Z 2009-05-01T21:17:24Z <p>I do this kind of thing all the time. Especially if I have some complicated validation that I don't want to screw around with the validator controls. document.forms[0].submit();</p> <p>That works every time for me. Is this not working for you?</p> http://stackoverflow.com/questions/803310/question-on-table-design 7 Question on table design Matt Dawdy 2009-04-29T16:58:32Z 2009-04-29T17:48:06Z <p>I'm offering a search option for my users. They can search on city name. The problem is that my city names I have stored are things like "Saint Louis". But I want to find Saint Louis even if the user types in "St. Louis" or "St Louis". Any suggestions on how I could create a lookup table to take that into account somehow?</p> http://stackoverflow.com/questions/699836/company-doesnt-want-to-use-asp-net-ajax-what-can-i-do/699846#699846 1 Answer by Matt Dawdy for Company doesn't want to use ASP.NET ajax...what can I do? Matt Dawdy 2009-03-31T02:54:56Z 2009-03-31T02:54:56Z <p>I don't know about a post, but you can easily implement AJAX without using any kind of library (if what you mean is really AJAX, and not all the helper stuff that gets lumped into AJAX like field validation, DOM abstraction, etc).</p> <p>This page taught me all I needed to know about real and true AJAX. <a href="http://www.hunlock.com/blogs/AJAX%5Ffor%5Fn00bs" rel="nofollow">http://www.hunlock.com/blogs/AJAX_for_n00bs</a></p> http://stackoverflow.com/questions/688387/can-you-use-javascript-to-render-an-image-stream/688399#688399 1 Answer by Matt Dawdy for Can you use javascript to render an image stream? Matt Dawdy 2009-03-27T03:12:12Z 2009-03-27T03:12:12Z <p>Can you not set an image's src attribute to the url you are using for your ajax communication currently? Or do you have to strip out other info from the ajax call first?</p> http://stackoverflow.com/questions/630548/sitemap-behaviour/631133#631133 1 Answer by Matt Dawdy for SiteMap Behaviour Matt Dawdy 2009-03-10T16:36:04Z 2009-03-11T21:47:25Z <p>You could still use the Sitemap.sitemap file to control your navigation, but you wouldn't use any of the built-in controls in asp.net to achieve this. I just did almost this very thing on a site I just finished.</p> <p>Make all of your pages inherit from a base page class (or use master pages, either way you'll only have 1 copy of your code.)</p> <p>Create a div or span on each page, named something appropriate (divNav or spnNav or whatever).</p> <p>In your base page, on page load, loop through all the sitemap nodes to find the current page's node. This needs to be a recursive call.</p> <pre><code> // Pass the current page url, all the way through the .aspx. In other words, do NOT pass any kind of // query string. private SiteMapNode GetCurrentNode(string _sCurrentPageURL, SiteMapNode _oNode) { SiteMapNode oNodeRet = null; foreach (SiteMapNode oNodeCheck in _oNode.ChildNodes) { if (oNodeCheck.HasChildNodes == true) { oNodeRet = GetCurrentNode(_sCurrentPageURL, oNodeCheck); } if (oNodeRet != null) break; string sUrl = oNodeCheck.Url.ToLower(); int iPos = sUrl.IndexOf("?"); if (iPos &gt; 0) sUrl = sUrl.Substring(0, iPos); iPos = sUrl.LastIndexOf("/"); if (iPos &gt; 0) sUrl = sUrl.Substring(iPos); if (sUrl == _sCurrentPageURL) { oNodeRet = oNodeCheck; break; } } return oNodeRet; } </code></pre> <p>Once you have the current node, get its parent.</p> <p>Add a link (the "up menu to come back out a folder" as you called it).</p> <p>Then do a foreach(SiteMapNode in parent.ChildNodes)</p> <p>Add a link for each of the children.</p> <p>So, our main call, that we called on every page load, was like this:</p> <pre><code> public string GetSecondaryNavItems() { string sRet = ""; // Get the node that matches most of this url... System.Web.SiteMapNode oCurrNode = null; System.Web.SiteMapNode oCurrParentNode = null; string sCurrPage = GetURL(Request.ServerVariables["SCRIPT_NAME"].ToLower()); oCurrNode = GetCurrentNode(sCurrPage, SiteMap.RootNode); if(oCurrNode != null) oCurrParentNode = oCurrNode.ParentNode; if(oCurrParentNode != null) if(oCurrParentNode != SiteMap.RootNode) sRet += "Parent Folder link"; if(oCurrNode != null) { foreach (System.Web.SiteMapNode oChild in oCurrParentNode.ChildNodes) { sRet += "Link for child"; } } } </code></pre> <p>I have to tell you that the code above is part copied and part freehanded by me. But this should give you a good start, I would think.</p> <p>EDIT: So sorry! Here is the GetURL proc...</p> <pre><code> public string GetURL(string _sURL) { string sRet = _sURL; int iPos = sRet.IndexOf("?"); if (iPos &gt; 0) sRet = sRet.Substring(0, iPos); iPos = sRet.LastIndexOf("/"); if (iPos &gt; 0) sRet = sRet.Substring(iPos); return sRet; } </code></pre> http://stackoverflow.com/questions/627247/smtp-through-asp-net-2-session-size-problem/627396#627396 0 Answer by Matt Dawdy for SMTP through ASP.Net 2 Session Size Problem Matt Dawdy 2009-03-09T18:09:35Z 2009-03-09T18:09:35Z <p>We do much the same thing, but we do 500 emails at a time per minute. The first 500 get sent, then the page reloads itself, and the job continues on with the next 500.</p> <p>This take a little bit of logging and storing information about the current queue of 500, allowing for timeouts, early reloads, etc, but it has been working (emailing probably 10,000 or so emails on any given night) for a couple of years.</p> http://stackoverflow.com/questions/1765888/iphone-app-rejecting-incoming-calls/1766280#1766280 Comment by Matt Dawdy on iPhone app "rejecting" incoming calls? Matt Dawdy 2009-11-29T23:16:22Z 2009-11-29T23:16:22Z I would have bet pretty much anything that you were wrong, and was about to vote you down. However, that link you provided, the last sentence, well, holy crap. You are absolutely right, and I can't believe that's how it works. Sheesh. I wonder if I've missed any business because of that? I'm actually pretty irritated at Apple and AT&amp;T. http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change/1685281#1685281 Comment by Matt Dawdy on Billing Client for very small change Matt Dawdy 2009-11-06T15:41:03Z 2009-11-06T15:41:03Z Good call Critical Skill. It does add up, I guess, and I doubt they would balk at paying it. We've been good to each other, and I'm pretty sure they don't want to take advantage of me, nor I of them. http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change Comment by Matt Dawdy on Billing Client for very small change Matt Dawdy 2009-11-06T04:28:56Z 2009-11-06T04:28:56Z Thank you notnoop. I hope my original comment didn't anger Ngu Soon Hui. http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change/1685293#1685293 Comment by Matt Dawdy on Billing Client for very small change Matt Dawdy 2009-11-06T03:52:35Z 2009-11-06T03:52:35Z tinkertim, that's a very well considered post. I'm on the fence again. http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change/1685281#1685281 Comment by Matt Dawdy on Billing Client for very small change Matt Dawdy 2009-11-06T03:50:18Z 2009-11-06T03:50:18Z No terms, no contract, this is a client I have apart from my regular job. I build their site and a desktop app for them years ago. I still make changes to the desktop app, probably to the tune of $2,000 a year. I bet I field 2 phone calls a month, and a website change every couple of months that are free as of now since they take me so little time. http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change/1685249#1685249 Comment by Matt Dawdy on Billing Client for very small change Matt Dawdy 2009-11-06T03:40:34Z 2009-11-06T03:40:34Z Very true, and I fully support the theory that with experience (knowing where to his with the hammer) should come at a higher price. But removing 2 images from a plain vanilla html page? http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change Comment by Matt Dawdy on Billing Client for very small change Matt Dawdy 2009-11-06T03:32:36Z 2009-11-06T03:32:36Z That's not very helpful. That URL you mentioned is an ad page. No content.Are you sure that is the URL? http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change/1685187#1685187 Comment by Matt Dawdy on Billing Client for very small change Matt Dawdy 2009-11-06T03:24:26Z 2009-11-06T03:24:26Z I'll probably fold it into the next bill. I just can't justify charging them $75 for such a small change. http://stackoverflow.com/questions/1685169/billing-client-for-very-small-change/1685191#1685191 Comment by Matt Dawdy on Billing Client for very small change Matt Dawdy 2009-11-06T03:19:58Z 2009-11-06T03:19:58Z Yikes, 1 hour! That's $75 (my rate with this particular client). I think I might move to France and get some clients with tons of small changes. If I do it right, I could work about a half hour in a day and be able to bill for 8. :) http://stackoverflow.com/questions/1574958/asp-net-page-access-directory-on-another-server/1575128#1575128 Comment by Matt Dawdy on ASP.Net page access directory on another server. Matt Dawdy 2009-10-20T14:41:57Z 2009-10-20T14:41:57Z jayrdub, I'm sorry I have'nt accepted your answer yet. I got the flu, and we haven't been able to try it out (this is all made more complicated as it only can be tested on a remote server and I personally don't have access to it right now.) After I get a chance to test it I'll come back. http://stackoverflow.com/questions/1574958/asp-net-page-access-directory-on-another-server/1575128#1575128 Comment by Matt Dawdy on ASP.Net page access directory on another server. Matt Dawdy 2009-10-16T19:47:55Z 2009-10-16T19:47:55Z Okay, that seem ultra promising. I'm trying to get the code setup to test it. Thank you for following up, I just was NOT using the right search terms, I guess. http://stackoverflow.com/questions/1574958/asp-net-page-access-directory-on-another-server/1575128#1575128 Comment by Matt Dawdy on ASP.Net page access directory on another server. Matt Dawdy 2009-10-16T14:36:34Z 2009-10-16T14:36:34Z Hmmmm. I was trying to figure out that article, but I'm not having any luck, because I'm not the smartest man. (Or maybe it's that I've put in 90 hours since Saturday and I can't see straight.) Thanks for the pointer, jayrdub. I'll try to revisit this with a clear mind after some sleep, whenever that will be. http://stackoverflow.com/questions/1570438/how-could-i-setup-users-in-membership-services-from-a-desktop-application/1570462#1570462 Comment by Matt Dawdy on How could I setup users in Membership Services from a Desktop application Matt Dawdy 2009-10-15T06:23:42Z 2009-10-15T06:23:42Z The answer is &quot;Yes&quot;, very easily. I'm not using it for security on my desktop app, merely using a desktop app to pre-populate the database with web users. http://stackoverflow.com/questions/1570438/how-could-i-setup-users-in-membership-services-from-a-desktop-application/1570462#1570462 Comment by Matt Dawdy on How could I setup users in Membership Services from a Desktop application Matt Dawdy 2009-10-15T06:21:52Z 2009-10-15T06:21:52Z Damn. I even searched. Thanks for the pointer. http://stackoverflow.com/questions/1518288/error-with-subsonic-2-1/1518351#1518351 Comment by Matt Dawdy on Error with Subsonic 2.1 Matt Dawdy 2009-10-06T02:18:25Z 2009-10-06T02:18:25Z I've got that one, too. System.Web, System.configuration, System.Data, System.Data.DataSetExtesions, System.XML, System.Xml.Linq, System.Core... I still don't know why this is happening.