<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>WebProASP</title>
	<atom:link href="http://www.webproasp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webproasp.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Fri, 05 Mar 2010 13:30:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bitrix Site Manager ASP.NET 4.6 Boasts Improved Security</title>
		<link>http://www.webproasp.com/2010/03/05/bitrix-site-manager-aspnet-46-boasts-improved-security/</link>
		<comments>http://www.webproasp.com/2010/03/05/bitrix-site-manager-aspnet-46-boasts-improved-security/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 13:30:34 +0000</pubDate>
		<dc:creator>Doug Caverly</dc:creator>
		
		<category><![CDATA[Discussions]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=94</guid>
		<description><![CDATA[On what seems like a weekly basis, big, important companies get hacked.  They often lose customers&#8217; private info in the process, and at the least, these security failures are embarrassing.  It&#8217;s potentially quite important, then, that Bitrix has said Bitrix Site Manager ASP.NET 4.6 will come with an advanced security framework.
This should be the real [...]]]></description>
			<content:encoded><![CDATA[<p>On what seems like a weekly basis, big, important companies get hacked.  They often lose customers&#8217; private info in the process, and at the least, these security failures are embarrassing.  It&#8217;s potentially quite important, then, that Bitrix has said Bitrix Site Manager ASP.NET 4.6 will come with an advanced security framework.</p>
<p><span id="more-94"></span>This should be the real deal and benefit companies both big and small.  The framework&#8217;s been certified by Positive Technologies, and during the Chaos Constructions CC9 Festival, apparently stood firm against more than 25,000 attacks.</p>
<p>As for some specifics about how it works, a formal statement noted, &#8220;The new security framework provides proactive protection against the majority of known web attacks and security flaws like XSS and SQL injections and phishing.&#8221;</p>
<p>Also, &#8220;The framework recognizes threats among incoming requests, blocks website intrusions and maintains a comprehensive log about suspicious and dangerous activity being registered, providing an opportunity to respond accordingly.&#8221;</p>
<p>So hopefully ASP.NET developers will find themselves able to operate in a safer environment thanks to this development.  Would-be buyers should know that Bitrix Site Manager ASP.NET is available now at what&#8217;s supposed to be a special (&#8221;30% discount limited-time offer&#8221;) price of $690.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2010/03/05/bitrix-site-manager-aspnet-46-boasts-improved-security/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.Net MVC 2.0 Brings New Features To The Table</title>
		<link>http://www.webproasp.com/2010/02/19/aspnet-mvc-20-brings-new-features-to-the-table/</link>
		<comments>http://www.webproasp.com/2010/02/19/aspnet-mvc-20-brings-new-features-to-the-table/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 13:30:33 +0000</pubDate>
		<dc:creator>John Vinson</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=90</guid>
		<description><![CDATA[Web app development utilizing ASP.NET has taken an interesting turn with the implementation of ASP.NET MVC 2.0. This web framework adds new features, with the direct relation to ASP.NEt runtime environment. The MVC aspect of this framework has a web-oriented feel to it, as 2.0 works with for Visual Studio/.NET versions.

Upon tackling 2.0, you&#8217;ll notice [...]]]></description>
			<content:encoded><![CDATA[<p>Web app development utilizing ASP.NET has taken an interesting turn with the <a href="http://www.informationweek.com/news/development/windows-.net/showArticle.jhtml?articleID=222600278">implementation of ASP.NET MVC 2.0</a>. This web framework adds new features, with the direct relation to ASP.NEt runtime environment. The MVC aspect of this framework has a web-oriented feel to it, as 2.0 works with for Visual Studio/.NET versions.<br />
<span id="more-90"></span><br />
Upon tackling 2.0, you&#8217;ll notice a significant change from the use of Web Forms prior to it. Producing HTML won&#8217;t require server controls like in the past, however MVC is still built upon handling requests. The only difference is the URL string is handled differently, and based on controller classes not postbacks.</p>
<p>The MVC HTTP handler controls are incoming requests. The logic parses a URL, and depending on the request, will decide on what controller to utilize. A small difference you&#8217;ll notice with ASP.NET MVC is the URL is related to an action, not a file. Every URL utilized contains routing information to help identify a target controller. </p>
<p>ASP.NET MVC acts independently of other server controls and technologies. ASPX syntax is supported in the default view, and any other engine you plug in will use its own syntax.</p>
<p>For those who are used to Web Forms, ASP.NET MVC can be mixed together with ASP.NET in the same app. You are able to combine both frameworks because they utilize the same run-time environment. It should be noted that ASP.NET MVC pages can host the older frameworks, but not the other way around.</p>
<p>This recent development really takes the ASP.NET framework in a different direction for web applications. The .NET framework has recently come under criticisms for not being expansive as some other programming languages currently coming up in the market. The ASP.NET MVC inclusion should make strides for expanding its usability factor.</p>
<p>Here&#8217;s a list of new features which can be enjoyed by ASP.NET MVC:</p>
<p>1. Asynchronous controllers that increase the scalability of sites that interact with Web services</p>
<p>2. Strongly-typed HTML helpers for generating form input fields and reducing errors caused by typos</p>
<p>3. Client validation support for globalization data for multiple cultures</p>
<p>4. Server validation that renders model-level errors only</p>
<p>5. Templated helpers that automatically associate edit and display elements with data types</p>
<p>6. Html.RenderAction for rendering subsections of a page or site</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2010/02/19/aspnet-mvc-20-brings-new-features-to-the-table/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Sams Teach Yourself ASP.NET&#8221; Well-Received</title>
		<link>http://www.webproasp.com/2010/02/05/sams-teach-yourself-aspnet-well-received/</link>
		<comments>http://www.webproasp.com/2010/02/05/sams-teach-yourself-aspnet-well-received/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 13:30:58 +0000</pubDate>
		<dc:creator>Doug Caverly</dc:creator>
		
		<category><![CDATA[Discussions]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=87</guid>
		<description><![CDATA[If there&#8217;s a new guy at your office whom you don&#8217;t have time to train, or if you happen to be either the new guy or a rusty veteran yourself, a book may be able to set you straight regarding the basics of ASP.NET.  &#8220;Sams Teach Yourself ASP.NET 3.5 in 24 Hours&#8221; has been receiving [...]]]></description>
			<content:encoded><![CDATA[<p>If there&#8217;s a new guy at your office whom you don&#8217;t have time to train, or if you happen to be either the new guy or a rusty veteran yourself, a book may be able to set you straight regarding the basics of ASP.NET.  &#8220;Sams Teach Yourself ASP.NET 3.5 in 24 Hours&#8221; has been receiving positive reviews.</p>
<p><a href="http://apache.sys-con.com/node/1272194"><span id="more-87"></span>Steve Mandel</a> recently took a look at the volume (which was authored by the similarly-initialed Scott Mitchell) and came away impressed.  He wrote, &#8220;This book is well written and is divided into four parts with a total of 24 chapters.  While the level of the book is directed at beginners, it&#8217;s a good refresher for more experienced developers who want to learn some of the new features available in ASP.NET 3.5.&#8221;</p>
<p>Mandel isn&#8217;t alone in his opinion, either, as &#8220;Sams Teach Yourself ASP.NET 3.5 in 24 Hours&#8221; is averaging about 4.5 stars on <a href="http://www.amazon.com/Teach-Yourself-ASP-NET-Complete-Starter/dp/0672329972">Amazon</a>.</p>
<p>Here&#8217;s an added bonus: the book isn&#8217;t a boring instruction manual.  Each chapter includes a question and answer section, a workshop segment, and a selection of exercises to help readers gain a bit of real-world understanding and practical experience.</p>
<p>All in all, this seems to represent a pretty worthwhile way of getting someone up to speed on ASP.NET, and the 24-hour timeframe named by the title makes it look like an efficient one, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2010/02/05/sams-teach-yourself-aspnet-well-received/feed/</wfw:commentRss>
		</item>
		<item>
		<title>2010 .NET Survey Results In</title>
		<link>http://www.webproasp.com/2010/01/22/2010-net-survey-results-in/</link>
		<comments>http://www.webproasp.com/2010/01/22/2010-net-survey-results-in/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 13:00:47 +0000</pubDate>
		<dc:creator>Doug Caverly</dc:creator>
		
		<category><![CDATA[Discussions]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=85</guid>
		<description><![CDATA[Ever wonder which way early adopters are leaning in terms of the technologies they use in the .NET Framework?  If so, the results of a new survey should interest you.  ASP.NET WebForms managed to win the competition, and ASP.NET MVC landed mid-pack.
Scott Hanselman has apparently been running a sort of poll on Twitter for a [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wonder which way early adopters are leaning in terms of the technologies they use in the .NET Framework?  If so, the results of a new survey should interest you.  ASP.NET WebForms managed to win the competition, and ASP.NET MVC landed mid-pack.</p>
<p><a href="http://twitter.com/shanselman"><span id="more-85"></span>Scott Hanselman</a> has apparently been running a sort of poll on Twitter for a couple of years, and this time around, his question garnered 1,250 responses.  That&#8217;s not a bad number - a lot of formal surveys don&#8217;t even try to approach half as many people - and given that Twitter tends to be popular with techies, looking for answers on the site seems like a pretty good idea.</p>
<p>On to the results, then.  As mentioned earlier, ASP.NET WebForms came out on top with 723 shows of support.  Ajax was the closest-scoring alternative, as 629 individuals mentioned it.  Next was WCF with 609 votes, and then we get to ASP.NET MVC with its 553 votes.</p>
<p>If you&#8217;re curious, WinForms, Silverlight, and WPF rounded out the seven-member group, with 516, 398, and 386 people referencing them, respectively.</p>
<p>A bit hat tip goes to <a href="http://reddevnews.com/blogs/rdn-express/2010/01/net-survey-says.aspx">Kathleen Richards</a>, and it looks like the ASP.NET community can pat itself on the back, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2010/01/22/2010-net-survey-results-in/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.NET 4 Will Pack SEO Improvements</title>
		<link>http://www.webproasp.com/2010/01/08/aspnet-4-will-pack-seo-improvements/</link>
		<comments>http://www.webproasp.com/2010/01/08/aspnet-4-will-pack-seo-improvements/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 13:30:46 +0000</pubDate>
		<dc:creator>Doug Caverly</dc:creator>
		
		<category><![CDATA[Discussions]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=81</guid>
		<description><![CDATA[The best website in the world won&#8217;t do anyone any good if it&#8217;s impossible to find, which is where search engine optimization (SEO) enters the equation.  So people who are in charge of sites should be happy to know that ASP.NET 4 promises to up the ante on the SEO front.
A slightly better explanation of [...]]]></description>
			<content:encoded><![CDATA[<p>The best website in the world won&#8217;t do anyone any good if it&#8217;s impossible to find, which is where search engine optimization (SEO) enters the equation.  So people who are in charge of sites should be happy to know that ASP.NET 4 promises to up the ante on the SEO front.</p>
<p><span id="more-81"></span>A slightly better explanation of SEO is that it&#8217;s what helps certain sites rank above others in Google&#8217;s search results.  There are other factors involved - no amount of keyword optimization will put Jim-Bob&#8217;s Cowhide Boots ahead of Nike following a search for &#8220;shoes&#8221; - but SEO is a big deal when it comes to visibility and traffic.</p>
<p>That&#8217;s why it&#8217;s important that <a href="http://weblogs.asp.net/scottgu/archive/2010/01/05/asp-net-4-seo-improvements-vs-2010-and-net-4-0-series.aspx">Scott Guthrie</a>, a corporate vice president in the Microsoft Developer Division, wrote earlier this week, &#8220;ASP.NET 4 includes a bunch of new runtime features that can help you to further optimize your site for SEO.&#8221;</p>
<p>He then named &#8220;New Page.MetaKeywords and Page.MetaDescription properties,&#8221; &#8220;New URL Routing support for ASP.NET Web Forms,&#8221; and a &#8220;New  Response.RedirectPermanent() method&#8221; as the key upgrades.</p>
<p>ASP.NET developers should be able to use these features to their advantage.  Just consider reading up a little on SEO and keep you expectations realistic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2010/01/08/aspnet-4-will-pack-seo-improvements/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gaia Ajax 3.6 Introduces DRIMR</title>
		<link>http://www.webproasp.com/2009/12/18/gaia-ajax-36-introduces-drimr/</link>
		<comments>http://www.webproasp.com/2009/12/18/gaia-ajax-36-introduces-drimr/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 13:30:48 +0000</pubDate>
		<dc:creator>John Vinson</dc:creator>
		
		<category><![CDATA[Resources]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=79</guid>
		<description><![CDATA[Gaiaware is a highly respected software designer who develops tools used by the web app community. They&#8217;re mostly known for providing the means to create AJAX apps, and now they&#8217;ve released their latest code, Gaia Ajax 3.6. With this release they&#8217;ve greatly improved AJAX development using the ASP.NET platform.

With Gaia Ajax 3.6, the enhancement you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>Gaiaware is a highly respected software designer who develops tools used by the web app community. They&#8217;re mostly known for providing the means to create AJAX apps, and now they&#8217;ve released their latest code, Gaia Ajax 3.6. <a href="http://www.sdtimes.com/GAIAWARE_PROVIDES_WEB_UI_CONTROLS_FOR_WEB_APP_CREATION/By_Jeff_Feinman/About_AJAX_and_GAIAWARE/33992">With this release</a> they&#8217;ve greatly improved AJAX development using the ASP.NET platform.<br />
<span id="more-79"></span><br />
With Gaia Ajax 3.6, the <a href="http://blogs.gaiaware.net/post/Gaia-Ajax-3-6-Final-Release.aspx">enhancement you&#8217;ll be wanting to keep an eye on</a> is DRIMR (Dynamic Removals, Inserts, Moves and Replacements). This technology basically takes many of the details and complexities of AJAX, then optimizes it for ASP.NET. Here&#8217;s a list of benefits you&#8217;ll find with Gaiaware&#8217;s DRIMR:</p>
<p>-You can move a control between Control Collections and we&#8217;ll just move the control in the Browser too  <img src='http://www.webproasp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
- You can remove a control and replace it with a new control and if they are of the same type, we will reuse that instance in the Browser and only emit the state changes. A great example is paging/sorting in the GridView: Only the Text property of the Labels get&#8217;s serialized.</p>
<p>- You can remove a control entirely and we&#8217;ll just issue a RemoveControlCommand to the Browser, not touching anything else.</p>
<p>- It also means a lot more to you, but we&#8217;ll just have to expand information on this topic as we go.</p>
<p>Gaiaware is hoping the concept of DRIMR will help developers utilize code that helps keep re-rendering strategies at bay. There&#8217;s an <a href="http://blogs.gaiaware.net/image.axd?picture=2009%2f11%2fdrimr-missing-puzzlepart.gif">image on Gaiaware&#8217;s blog</a> that shows what DRIMR is all about, showing how DRIMR acts as a center puzzle piece to all the various aspects of development.</p>
<p>Stian Solberg, cofounder of Gaiaware discusses the benefits of DRIMR, &#8220;The basic concept of ASP.NET AJAX UpdatePanels is that you surround an area where you want to update HTML so you don’t disrupt the whole page, and this often leads to writing unnecessary HTML&#8221; he continues, &#8220;But now, with DRIMR, because we’ve built our own AJAX engine, we are able to insert controls anywhere in the page without re-rendering.&#8221;</p>
<p>What&#8217;s most impressive about Gaia Ajax 3.6 is that DRIMR is just one function of the product. Gaiaware&#8217;s blog post I linked to previously, has a slew of more details if you&#8217;re interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2009/12/18/gaia-ajax-36-introduces-drimr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Two ASP.NET Developers Partner Up To Enhance User Experience</title>
		<link>http://www.webproasp.com/2009/12/04/two-aspnet-developers-partner-up-to-enhance-user-experience/</link>
		<comments>http://www.webproasp.com/2009/12/04/two-aspnet-developers-partner-up-to-enhance-user-experience/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 13:30:56 +0000</pubDate>
		<dc:creator>John Vinson</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=76</guid>
		<description><![CDATA[The ASP.NET framework developer, DotNetNuke has announced a partnership with the interface development company, Telerik. Both companies are recognized as quality developers in the ASP.NET field, and their partnership has been highly welcomed by interested parties.
The partnership announcements come with the release of DotNetNuke 5.2. Telerik&#8217;s RadControls will be readily available with this edition, and [...]]]></description>
			<content:encoded><![CDATA[<p>The ASP.NET framework developer, DotNetNuke <a href="http://www.yachtchartersmagazine.com/node/1208726">has announced a partnership with the interface development company, Telerik</a>. Both companies are recognized as quality developers in the ASP.NET field, and their partnership has been highly welcomed by interested parties.<span id="more-76"></span></p>
<p>The partnership announcements come with the release of DotNetNuke 5.2. Telerik&#8217;s RadControls will be readily available with this edition, and provide a richer toolset by way of an engaging user interface. DotNetNuke 5.2 will be available in two editions, Community Edition, and Professional Edition. In order to completely use the RadControls tool set, you&#8217;ll have to purchase the Professional Edition.</p>
<p>DotNetNuke hopes with the partnership that engaging user experiences will be more frequent for website users. For those who are interested in the DotNetNuke 5.2 release should know the full Telerik RadEditor is only available with the Professional Edition.</p>
<p>Telerik has made out good in this deal as DotNetNuke plans to promote Telerik on its website, newsletter, and at future trade shows.</p>
<p>Here&#8217;s a list of features you&#8217;ll find with DotNetNuke&#8217;s Professional Edition 5.2:</p>
<p>- Enhanced Rich Text Editor - Based on the commercially successful RadEditor from Telerik, the new text editor offers features like Microsoft Word &#8220;clean&#8221; HTML, spell checking, HTML templates, image resizing and compression and more.</p>
<p>- Page Caching - Improves web site performance by serving cached pages from a location specified by the site administrator: memory, database, or disk.</p>
<p>- Module Caching - Stores module content in a centralized database for faster page loading without requiring web server processing.</p>
<p>- Security Center - Protects DotNetNuke Professional Edition users by dynamically loading lists of known security vulnerabilities affecting the current software version and provides navigational guidance to acquire the latest software updates.</p>
<p>Svetozar Georgiev, co-CEO at Telerik had this to say about the partnership, &#8220;We&#8217;re excited that Telerik RadControls has become part of the sophisticated DotNetNuke web content management system. Combining the RadControls toolset and developer rights with the DotNetNuke Professional Edition will make it possible for web site developers to easily access our powerful tools and create dynamic, interactive web applications.&#8221;</p>
<p>Along With Georgiev, Shaun Walker, Co-Founder of DotNetNuke provided this statement, &#8220;We are very pleased with the addition of Telerik RadControls to the DotNetNuke platform. Developers will benefit from the powerful tools for developing rich, client-side interfaces for web site visitors. Combined with the other new features in Professional Edition 5.2, this latest release should greatly benefit customers using DotNetNuke in business-critical applications.&#8221;</p>
<p>It sounds like the deal is going to benefit everyone involved. What remains to be seen is if the most important benefactors, the users, will truly receive a more highly enhanced experience. If the company&#8217;s reputations are anything to go by, I&#8217;d say &#8216;yes&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2009/12/04/two-aspnet-developers-partner-up-to-enhance-user-experience/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Orchard Project Reaches Out To ASP.NET Community</title>
		<link>http://www.webproasp.com/2009/11/20/orchard-project-reaches-out-to-aspnet-community/</link>
		<comments>http://www.webproasp.com/2009/11/20/orchard-project-reaches-out-to-aspnet-community/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 13:30:00 +0000</pubDate>
		<dc:creator>Doug Caverly</dc:creator>
		
		<category><![CDATA[Discussions]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=72</guid>
		<description><![CDATA[A new project that&#8217;s tied to the ASP.NET platform is underway, and judging from the information made available so far, this may be a very important effort.  There&#8217;s an opportunity for interested ASP.NET developers to pitch in, too, as the small group of Microsoft developers that&#8217;s behind the project is seeking community feedback.
Let&#8217;s start with [...]]]></description>
			<content:encoded><![CDATA[<p>A new project that&#8217;s tied to the ASP.NET platform is underway, and judging from the information made available so far, this may be a very important effort.  There&#8217;s an opportunity for interested ASP.NET developers to pitch in, too, as the small group of Microsoft developers that&#8217;s behind the project is seeking community feedback.</p>
<p><span id="more-72"></span>Let&#8217;s start with a basic description.  According to the Orchard Project&#8217;s <a href="http://orchard.codeplex.com/">homepage</a>, it&#8217;s &#8220;a free, open source, community-focused project aimed at delivering applications and reusable components on the ASP.NET platform.&#8221;</p>
<p>The official explanation then continued, &#8220;It will create shared components for building ASP.NET applications and extensions, and specific applications that leverage these components to meet the needs of end-users, scripters, and developers.  Additionally, we seek to create partnerships with existing application authors to help them achieve their goals.&#8221;</p>
<p>Sounds nice, right?  Services and products that simplify matters and help just about everybody are great in theory, at least.</p>
<p>And that takes us to making sure the Orchard Project is great in practice.  The Orchard Project team has published a <a href="http://orchard.codeplex.com/wikipage?title=features&amp;referringTitle=Home">feature roadmap</a>, some <a href="http://orchard.codeplex.com/wikipage?title=developers&amp;referringTitle=Home">developer information</a>, and <a href="http://orchard.codeplex.com/documentation">docs and designs/specs</a> so that onlookers can educate themselves and offer constructive criticism.  Bug fixes, feature suggestions, and all other sorts of input are welcome, to boot.</p>
<p>What&#8217;s more, all of this feedback isn&#8217;t going to disappear into a black, did-they-ignore-me? hole.  Open community participation is the name of the game, and the Orchard Project team is trying to fine-tune a proper contribution model.</p>
<p>As for when a downloadable release of Orchard might become available, well, that&#8217;s where a little bit of patience is required.  It doesn&#8217;t look like there are going to be any big happenings in the near future.</p>
<p>Bertrand Le Roy, the project&#8217;s program manager, told <a href="http://www.cmswire.com/cms/web-cms/orchard-web-cms-aims-to-promote-open-source-on-aspnet-006042.php">Barb Mosher</a>, &#8220;For the moment, we are focusing on three week iterations to deliver specific features.  When we will have something ready for public consumption depends on our ability to maintain our current velocity. . . .  At this point, we are very far from having something that you would reasonably build a public web site on and we&#8217;re not announcing a release date.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2009/11/20/orchard-project-reaches-out-to-aspnet-community/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DiscountASP.NET Launches SQL Server Reporting Services</title>
		<link>http://www.webproasp.com/2009/11/13/discountaspnet-launches-sql-server-reporting-services/</link>
		<comments>http://www.webproasp.com/2009/11/13/discountaspnet-launches-sql-server-reporting-services/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 13:30:40 +0000</pubDate>
		<dc:creator>Mike Sachoff</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=68</guid>
		<description><![CDATA[ASP.NET hosting and SQL hosting firm, DiscountASP.NET has launched Microsoft SQL Server 2008 Reporting Services.
DiscountASP.NET offers SQL 2008 Reporting Services as an optional add-on improvement.

Microsoft SQL Server Reporting Services supports a wide range of reporting needs, including ad-hoc reporting and Web-based reporting. SQL Reporting Services provides the ability to author a variety of richly formatted [...]]]></description>
			<content:encoded><![CDATA[<p>ASP.NET hosting and SQL hosting firm, DiscountASP.NET has launched Microsoft SQL Server 2008 Reporting Services.</p>
<p>DiscountASP.NET offers SQL 2008 Reporting Services as an optional add-on improvement.<br />
<span id="more-68"></span><!--more--><!--more--><br />
Microsoft SQL Server Reporting Services supports a wide range of reporting needs, including ad-hoc reporting and Web-based reporting. SQL Reporting Services provides the ability to author a variety of richly formatted reports from different data sources. Reports are processed and can be offered through a variety of ways, including through subscriptions, access to a central report repository, or embedded into web applications.</p>
<p>“With the launch of SQL 2008 Reporting Services, we deliver a cost-effective enterprise reporting solution,&#8221; said Takeshi Eto, VP Marketing. </p>
<p>&#8220;Our customers have the ability to transform their data into meaningful and manageable reports to help them in their business decision making process.&#8221;</p>
<p>To support SQL 2008 Reporting Services, DiscountASP.NET introduces a SQL 2008 Reporting Services User Manager tool to their Control Panel, allowing customers to add/remove/manage additional SQL Reporting Services users in real-time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2009/11/13/discountaspnet-launches-sql-server-reporting-services/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Infragistics Announces ASP.NET And Silverlight Controls</title>
		<link>http://www.webproasp.com/2009/10/29/infragistics-announces-aspnet-and-silverlight-controls/</link>
		<comments>http://www.webproasp.com/2009/10/29/infragistics-announces-aspnet-and-silverlight-controls/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 14:58:25 +0000</pubDate>
		<dc:creator>Doug Caverly</dc:creator>
		
		<category><![CDATA[Discussions]]></category>

		<guid isPermaLink="false">http://www.webproasp.com/?p=66</guid>
		<description><![CDATA[Courtesy of component maker Infragistics, NetAdvantage for .NET 2009 Volume 2: Web Client has arrived.  Several new ASP.NET toolsets are included in the offering, and as something of a bonus, Silverlight controls are part of the package, too.
Silverlight&#8217;s starting to become more and more common online - Microsoft&#8217;s baking it into Bing and all other [...]]]></description>
			<content:encoded><![CDATA[<p>Courtesy of component maker Infragistics, NetAdvantage for .NET 2009 Volume 2: Web Client has arrived.  Several new ASP.NET toolsets are included in the offering, and as something of a bonus, Silverlight controls are part of the package, too.</p>
<p><span id="more-66"></span>Silverlight&#8217;s starting to become more and more common online - Microsoft&#8217;s baking it into Bing and all other sorts of stuff - so the juxtaposition of it and ASP.NET tends to elevate the web application framework.  Think of it as relevance by association.</p>
<p>As for the ASP.NET details, Infragistics stated in a press release, &#8220;The new WebHierarchicalDataGrid leverages the power of ASP.NET to deliver the best user experience available in any ASP.NET hierarchical grid. With high performance and flexibility, the new data grid is perfect for line of business applications scenarios featuring multiple child band, pay to play model, animations, load on demand and much more.&#8221;</p>
<p>Also, according to the company, &#8220;WebEditors, WebMonthCalendar, and WebDataPicker new controls as well as the enhanced controls in this release provide extraordinarily sophisticated functionality as demanded by the application.  Each control includes advanced capabilities such as CSS support and one setting global styling.&#8221;</p>
<p>It looks like NetAdvantage for .NET will cost around $1,200, or $1,700 for people who prefer to receive priority support.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webproasp.com/2009/10/29/infragistics-announces-aspnet-and-silverlight-controls/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
