User BeaverProj - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:41:57Zhttp://stackoverflow.com/feeds/user/32908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1847331/creating-custom-content-sections-with-umbraco/1871819#18718190Answer by BeaverProj for Creating custom content sections with umbracoBeaverProj2009-12-09T05:41:53Z2009-12-09T05:41:53Z<p>From my understanding the custom sections are for linking to custom databases or data somewhere that needs an interface.</p>
<p>That said, you can use UrlRewriting and an existing content page with a macro to do something like that.</p>
<p>If you had a page called microsite, then using UrlRewriting you could make the parameter passed in to microsite.aspx (a content page in Umbraco) be "myportfolio".</p>
<p>With a user control on the microsite template it could display some content from your external database (or wherever your custom section stores it).</p>
<p>Not sure that's what you're looking for...</p>
<p>Why are you trying to create a new section for more content? The current Umbraco content area has all kinds of permissions for both users and members. Are the microsites all in the same install of Umbraco? </p>
<p>Another option is that the custom section could simply be used as a setup wizard for the new sites. You could create new content and users in their normal places and just use the new section to create them. It's not too hard to create content from C#, so it would probably be the same as doing it from a user control.</p>
<p>Could you provide a little more info?</p>
http://stackoverflow.com/questions/1871727/for-windows-what-are-the-best-commercial-tools-to-write-xhtml-css-jquery-which-ar/1871772#18717720Answer by BeaverProj for For windows what are the best commercial tools to write xhtml css jquery which are superior than free or opensource toolsBeaverProj2009-12-09T05:29:15Z2009-12-09T05:29:15Z<p>I use Visual Studio and it works great. Granted, I do everything in Visual Studio.</p>
http://stackoverflow.com/questions/1871751/do-you-have-a-personal-knowledgebase-and-how-to-you-manage-it/1871764#18717641Answer by BeaverProj for Do you have a personal knowledgebase and how to you manage itBeaverProj2009-12-09T05:25:49Z2009-12-09T05:25:49Z<p>I've been using OneNote for a while now and really like it. It's easily searched, added to, and backed-up. And I can throw photos, screenshots, tables, etc at it.</p>
<p>For a simple solution, it works surprisingly well.</p>
http://stackoverflow.com/questions/1871738/how-to-set-timer-function/1871757#18717572Answer by BeaverProj for How to Set timer functionBeaverProj2009-12-09T05:23:22Z2009-12-09T05:23:22Z<p>The only things in javascript that would stay around between pages or page refreshes are cookies. </p>
<p>You could periodically set the cookie value to be the time left and check it on page load and start the timer at that value if its not 0.</p>
http://stackoverflow.com/questions/732836/should-i-use-umbraco-for-this/1267841#12678410Answer by BeaverProj for Should I use Umbraco for this?BeaverProj2009-08-12T18:21:02Z2009-12-09T05:17:21Z<p>For learning, umbraco.tv has been great. Its worth a subscription for a month or two at least just to get up to speed quickly.</p>
http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net3Do I need to dispose a web service reference in ASP.NET?BeaverProj2009-01-09T19:58:14Z2009-11-21T17:06:46Z
<p>Does the garbage collector clean up web service references or do I need to call dispose on the service reference after I'm finished calling whatever method I call?</p>
http://stackoverflow.com/questions/699847/umbraco-yay-or-nay/1267864#12678641Answer by BeaverProj for Umbraco Yay or Nay?BeaverProj2009-08-12T18:24:26Z2009-08-12T18:24:26Z<p>I'm just getting up to speed on Umbraco after using Sitecore and Sitefinity on a few projects. I like it a lot and I like how much of the basic work can be done by the front-end developers, thus freeing up .NET developer time to do the hard stuff.</p>
<p>Umbraco.tv has been huge in getting me up to speed quickly.</p>
<p>So far I love the extensibility, simplicity, and control that Umbraco gives to web site builders.</p>
http://stackoverflow.com/questions/947611/best-approach-for-including-bits-of-javascript-on-individual-pages-in-sitefinity/1117231#11172310Answer by BeaverProj for Best approach for including bits of Javascript on individual pages in Sitefinity.BeaverProj2009-07-12T23:51:00Z2009-07-12T23:51:00Z<p>Why not have the jQuery code in a separate .js file and use unobtrusive JavaScript? With jQuery you can separate behavior and markup so nicely that you should never have to include JavaScript in your head or body ever again.</p>
<p>Just use the standard onLoad function in jQuery and put all of your initialization code in there. </p>
<p>Try it, I think that you will like it! If you like using CSS for separation of presentation and markup, then jQuery can do the same thing with behavior and markup.</p>
http://stackoverflow.com/questions/452292/sitefinity-deployment/607607#6076070Answer by BeaverProj for Sitefinity deploymentBeaverProj2009-03-03T18:42:34Z2009-03-03T18:42:34Z<p>Take a look at the user manual under the topic "Migrating Projects to the Production Web Server"</p>
<p><a href="http://www.sitefinity.com/documents/UserManual_3_5.pdf" rel="nofollow">http://www.sitefinity.com/documents/UserManual_3_5.pdf</a></p>
<p>That should walk you through the process of deploying to a production server.</p>
http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/550029#5500291Answer by BeaverProj for Any downsides to using ASP.Net AJAX and JQuery togetherBeaverProj2009-02-15T00:10:17Z2009-02-15T00:10:17Z<p>I've used jQuery with ASP.NET Ajax as they both do different things well. I've never had an issue with using the two together. In fact, I get around the wierd ASP.NET id mishmash by using the super powerful jQuery selectors. By being able to select classes and sub-elements of elements (basically CSS) it makes it very easy to use.</p>
http://stackoverflow.com/questions/414825/download-and-install-ning-on-other-servers/550022#5500220Answer by BeaverProj for Download and install Ning on other serversBeaverProj2009-02-15T00:04:20Z2009-02-15T00:04:20Z<p>Sitefinity from Telerik has a Social Network starter pack if you into ASP.NET programming.</p>
http://stackoverflow.com/questions/506538/what-are-some-good-posters-youd-find-in-a-programmers-room/526192#5261929Answer by BeaverProj for What are some good posters you'd find in a programmer's room?BeaverProj2009-02-08T18:40:04Z2009-02-08T18:40:04Z<p>I have this. I thought it looked cool</p>
<p><a href="http://www.visibone.com/color/poster.html" rel="nofollow">http://www.visibone.com/color/poster.html</a></p>
<p><img src="http://www.visibone.com/color/postr212.jpg" alt="alt text" /></p>
<p>Or another from xkcd:</p>
<p><img src="http://imgs.xkcd.com/store/imgs/online_communities_300.png" alt="alt text" /></p>
<p>Oh, despair.com has some great ones:</p>
<p><img src="http://us.st12.yimg.com/us.st.yimg.com/I/demotivators_2040_3644705" alt="alt text" /></p>
<p>When the winds of change blow hard enough, the most trivial of things can turn into deadly projectiles </p>
http://stackoverflow.com/questions/250880/is-there-any-cms-better-than-wordpress-or-should-i-roll-my-own/433500#4335001Answer by BeaverProj for Is there any CMS better than WordPress or should I roll my own?BeaverProj2009-01-11T19:40:50Z2009-01-11T19:40:50Z<p>The answer depends on the requirements. WordPress can be an excellent choice if your customer's budget is very low
<p>If they have some more budget and want something more, the take a look at the CMSes listed above. For ASP.NET I've used SiteCore and SiteFinity and have liked both because they allow a lot of flexibility over design and content. Plus, if I need to I can just get into the code and add my own user control to get something hard done.</p>
http://stackoverflow.com/questions/355783/one-large-xslt-over-smaller-more-granular-ones/433488#4334880Answer by BeaverProj for One large xslt over smaller more granular onesBeaverProj2009-01-11T19:33:50Z2009-01-11T19:33:50Z<p>Definitely use as small of XSLTs that make sense. Thats just good practice and can't hurt performance.</p>
http://stackoverflow.com/questions/433351/do-you-think-templates-represent-the-best-way-for-separating-presentation-logic-f/433443#4334430Answer by BeaverProj for Do you think templates represent the best way for separating presentation logic from business logic?BeaverProj2009-01-11T19:08:03Z2009-01-11T19:08:03Z<p>I personally like how some CMS solutions enable me to break my templates into very small pieces. SiteCore does this well through placeholders and renderings which map to usercontrols. </p>
<p>I've also used UserControls heavily in the past to break out common functionality like login, menu, footer links, etc to make it easier to modify or replace functionality in the future. (ASP.NET)</p>
<p>What template-engines are you using? Something like Smarty for PHP?</p>
http://stackoverflow.com/questions/426668/how-to-align-body-content-so-it-aligns-w-header-footer/429759#4297590Answer by BeaverProj for How To Align Body Content so it Aligns w/Header & FooterBeaverProj2009-01-09T21:14:00Z2009-01-09T21:14:00Z<p>I also can't see your page, but I can see <a href="http://www.thexdt.com" rel="nofollow">http://www.thexdt.com</a>. Is the design similar to that page?</p>
<p>That page uses tables for the general structure. Is there is a large image or something bigger that the width of the external container?</p>
http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/429592#4295921Answer by BeaverProj for Do I need to dispose a web service reference in ASP.NET?BeaverProj2009-01-09T20:27:23Z2009-01-09T20:27:23Z<p>I think the DataService inherits Dispose from Component.</p>
http://stackoverflow.com/questions/258028/script-debugging-not-working-vs-2008/379817#3798171Answer by BeaverProj for Script Debugging Not Working (VS 2008)BeaverProj2008-12-19T00:41:59Z2008-12-19T00:41:59Z<p>Have you tried using FireBug for JS debugging? It works pretty well as an alternative to VS.</p>
http://stackoverflow.com/questions/1871751/do-you-have-a-personal-knowledgebase-and-how-to-you-manage-it/1871764#1871764Comment by BeaverProj on Do you have a personal knowledgebase and how to you manage itBeaverProj2009-12-09T06:01:52Z2009-12-09T06:01:52ZActually, I also use del.icio.us A LOT. That is my links KB for sure.http://stackoverflow.com/questions/1871738/how-to-set-timer-function/1871757#1871757Comment by BeaverProj on How to Set timer functionBeaverProj2009-12-09T05:59:30Z2009-12-09T05:59:30ZTrue, you could even use session if you're getting AJAX involved.http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/449471#449471Comment by BeaverProj on Do I need to dispose a web service reference in ASP.NET?BeaverProj2009-01-23T17:49:41Z2009-01-23T17:49:41ZMy question was more from a <i>should</i> you do it standpoint as apposed to a do you have to do it standpoint. My main concern is memory leaks which would slowly degrade performance over time. http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/429499#429499Comment by BeaverProj on Do I need to dispose a web service reference in ASP.NET?BeaverProj2009-01-23T17:48:09Z2009-01-23T17:48:09ZSo it actually reduces performance? Yikes. OK. Rethinking this. Performance is more important than making sure the memory is freed right away.http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/429499#429499Comment by BeaverProj on Do I need to dispose a web service reference in ASP.NET?BeaverProj2009-01-11T19:02:18Z2009-01-11T19:02:18ZThanks! I'll definitely implement a using now.