<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Stephen Lacy &#187; ASP.Net Webforms</title>
	<atom:link href="http://www.lacy.ie/tag/asp-net-webforms/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lacy.ie</link>
	<description>Impressions as an ASP.Net Developer</description>
	<lastBuildDate>Mon, 05 Jul 2010 09:26:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Default Button in asp.net forms</title>
		<link>http://www.lacy.ie/default-button-in-asp-net-forms</link>
		<comments>http://www.lacy.ie/default-button-in-asp-net-forms#comments</comments>
		<pubDate>Mon, 17 May 2010 12:47:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ASP.Net Webforms]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=284</guid>
		<description><![CDATA[Taken from http://www.metabuilders.com/Tools/DefaultButtons.aspx Often in asp.net WebForms you have multiple buttons with a number of textboxes and other form controls making it difficult for the web browser to determine what should happen when a user clicks enter. Thankfully in asp.net 2 the panel and form controls have a default button property making it so that [...]


Related posts:<ol><li><a href='http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo' rel='bookmark' title='Permanent Link: Official JqGrid ASP.Net Web Forms Control Alpha Demo'>Official JqGrid ASP.Net Web Forms Control Alpha Demo</a> <small>First look at the official JqGrid ASP.Net Web Forms control...</small></li>
<li><a href='http://www.lacy.ie/updating-designer-cs-asp-web-application' rel='bookmark' title='Permanent Link: Updating designer.cs in an ASP.Net Web Application'>Updating designer.cs in an ASP.Net Web Application</a> <small>If the controls on your designer.cs are out of sync...</small></li>
<li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Taken from <a href="http://www.metabuilders.com/Tools/DefaultButtons.aspx">http://www.metabuilders.com/Tools/DefaultButtons.aspx</a></p>
<p>Often in asp.net WebForms you have multiple buttons with a number of textboxes and other form controls making it difficult for the web browser to determine what should happen when a user clicks enter.</p>
<p>Thankfully in asp.net 2 the panel and form controls have a default button property making it so that the enter key for all form controls contained within the panel or form control triggers the default button specified.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fdefault-button-in-asp-net-forms&amp;linkname=Default%20Button%20in%20asp.net%20forms"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo' rel='bookmark' title='Permanent Link: Official JqGrid ASP.Net Web Forms Control Alpha Demo'>Official JqGrid ASP.Net Web Forms Control Alpha Demo</a> <small>First look at the official JqGrid ASP.Net Web Forms control...</small></li>
<li><a href='http://www.lacy.ie/updating-designer-cs-asp-web-application' rel='bookmark' title='Permanent Link: Updating designer.cs in an ASP.Net Web Application'>Updating designer.cs in an ASP.Net Web Application</a> <small>If the controls on your designer.cs are out of sync...</small></li>
<li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/default-button-in-asp-net-forms/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating Redirection using Strong Types to .Net 4</title>
		<link>http://www.lacy.ie/updating-redirection-using-strong-types-to-net-4</link>
		<comments>http://www.lacy.ie/updating-redirection-using-strong-types-to-net-4#comments</comments>
		<pubDate>Sat, 17 Apr 2010 19:40:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ASP.Net 4]]></category>
		<category><![CDATA[ASP.Net Webforms]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=276</guid>
		<description><![CDATA[I wrote previously how to handle redirecting to other pages in an asp.net Web Forms application using the page&#8217;s type which allows you to move pages around in your site without having to worry about dead links as long as you use some sort of refactoring tool like resharper from jetbrains. Here is a link [...]


Related posts:<ol><li><a href='http://www.lacy.ie/redirecting-using-strong-types-in-an-asp-net-web-application-project' rel='bookmark' title='Permanent Link: Redirecting using strong types in an asp.net web application project'>Redirecting using strong types in an asp.net web application project</a> <small>Update, I recommend also reading the following post after you...</small></li>
<li><a href='http://www.lacy.ie/updating-designer-cs-asp-web-application' rel='bookmark' title='Permanent Link: Updating designer.cs in an ASP.Net Web Application'>Updating designer.cs in an ASP.Net Web Application</a> <small>If the controls on your designer.cs are out of sync...</small></li>
<li><a href='http://www.lacy.ie/how-to-mock-the-httpcontext-in-asp-net' rel='bookmark' title='Permanent Link: How to Mock the HttpContext in asp.net'>How to Mock the HttpContext in asp.net</a> <small>I find mocking the http context rather difficult, you can&#8217;t...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I wrote previously how to handle redirecting to other pages in an asp.net Web Forms application using the page&#8217;s type which allows you to move pages around in your site without having to worry about dead links as long as you use some sort of refactoring tool like resharper from jetbrains. Here is a link to the original post: <a href="http://www.lacy.ie/redirecting-using-strong-types-in-an-asp-net-web-application-project">http://www.lacy.ie/redirecting-using-strong-types-in-an-asp-net-web-application-project</a></p>
<p>In .Net 4 you are now able to have functions with optional parameters and name parameters in function calls, see <a href="http://weblogs.asp.net/paulomorgado/archive/2010/04/16/c-4-0-named-and-optional-arguments.aspx">http://weblogs.asp.net/paulomorgado/archive/2010/04/16/c-4-0-named-and-optional-arguments.aspx</a> for more details on that.</p>
<p>So what this means for Redirecting using Strong Type is that where before you couldn&#8217;t specify which parameter you were referring to if two of the optional parameters were integers, now you can make both parameters optional and in your calls name the parameter you want to pass.</p>
<p><span id="more-276"></span></p>
<p>So what you would have had before is</p>
<blockquote><p>public static void Redirect(int age, object randomParamToDistuinguish)<br />
{</p>
<p>HttpContext.Current.Response.Redirect(GetUrl(id,null);</p>
<p>}</p>
<p>public static void Redirect(int groupId)<br />
{</p>
<p>HttpContext.Current.Response.Redirect(GetUrl(id,null);</p>
<p>}</p>
<p>UserList.Redirect(1,null);</p>
<p>OR</p>
<p>UserDetails.Redirect(1);</p></blockquote>
<p>Now you have</p>
<blockquote><p>public static void Redirect(int age = -1, int groupId = -1)<br />
{</p>
<p>HttpContext.Current.Response.Redirect(GetUrl(age,groupId);</p>
<p>}</p>
<p>UserList.Redirect(age: 17, groupId: 4)</p>
<p>OR</p>
<p>UserList.Redirect(age: 9);</p>
<p>OR</p>
<p>UserList.Redirect(groupId: 14);</p></blockquote>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fupdating-redirection-using-strong-types-to-net-4&amp;linkname=Updating%20Redirection%20using%20Strong%20Types%20to%20.Net%204"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.lacy.ie/redirecting-using-strong-types-in-an-asp-net-web-application-project' rel='bookmark' title='Permanent Link: Redirecting using strong types in an asp.net web application project'>Redirecting using strong types in an asp.net web application project</a> <small>Update, I recommend also reading the following post after you...</small></li>
<li><a href='http://www.lacy.ie/updating-designer-cs-asp-web-application' rel='bookmark' title='Permanent Link: Updating designer.cs in an ASP.Net Web Application'>Updating designer.cs in an ASP.Net Web Application</a> <small>If the controls on your designer.cs are out of sync...</small></li>
<li><a href='http://www.lacy.ie/how-to-mock-the-httpcontext-in-asp-net' rel='bookmark' title='Permanent Link: How to Mock the HttpContext in asp.net'>How to Mock the HttpContext in asp.net</a> <small>I find mocking the http context rather difficult, you can&#8217;t...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/updating-redirection-using-strong-types-to-net-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating designer.cs in an ASP.Net Web Application</title>
		<link>http://www.lacy.ie/updating-designer-cs-asp-web-application</link>
		<comments>http://www.lacy.ie/updating-designer-cs-asp-web-application#comments</comments>
		<pubDate>Tue, 13 Apr 2010 16:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ASP.Net Webforms]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=269</guid>
		<description><![CDATA[If the controls on your designer.cs are out of sync with your aspx page you may want to try the following to resync them. Put your page in design view and right click / refresh. It will sync the controls with the designer.cs. Make sure designer.cs is close before doing this. Taken from the following [...]


Related posts:<ol><li><a href='http://www.lacy.ie/redirecting-using-strong-types-in-an-asp-net-web-application-project' rel='bookmark' title='Permanent Link: Redirecting using strong types in an asp.net web application project'>Redirecting using strong types in an asp.net web application project</a> <small>Update, I recommend also reading the following post after you...</small></li>
<li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
<li><a href='http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo' rel='bookmark' title='Permanent Link: Official JqGrid ASP.Net Web Forms Control Alpha Demo'>Official JqGrid ASP.Net Web Forms Control Alpha Demo</a> <small>First look at the official JqGrid ASP.Net Web Forms control...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If the controls on your designer.cs are out of sync with your aspx page you may want to try the following to resync them.</p>
<blockquote><p>Put your page in design view and right click / refresh. It will sync the controls with the designer.cs. Make sure designer.cs is close before doing this.</p></blockquote>
<p>Taken from the following link: <a href="http://forums.asp.net/t/1233688.aspx">http://forums.asp.net/t/1233688.aspx</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fupdating-designer-cs-asp-web-application&amp;linkname=Updating%20designer.cs%20in%20an%20ASP.Net%20Web%20Application"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.lacy.ie/redirecting-using-strong-types-in-an-asp-net-web-application-project' rel='bookmark' title='Permanent Link: Redirecting using strong types in an asp.net web application project'>Redirecting using strong types in an asp.net web application project</a> <small>Update, I recommend also reading the following post after you...</small></li>
<li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
<li><a href='http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo' rel='bookmark' title='Permanent Link: Official JqGrid ASP.Net Web Forms Control Alpha Demo'>Official JqGrid ASP.Net Web Forms Control Alpha Demo</a> <small>First look at the official JqGrid ASP.Net Web Forms control...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/updating-designer-cs-asp-web-application/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reducing the size of your ViewState in asp.net web forms</title>
		<link>http://www.lacy.ie/reducing-the-size-of-your-viewstate-in-asp-net-web-forms</link>
		<comments>http://www.lacy.ie/reducing-the-size-of-your-viewstate-in-asp-net-web-forms#comments</comments>
		<pubDate>Mon, 22 Feb 2010 16:13:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ASP.Net Webforms]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=264</guid>
		<description><![CDATA[Very useful article on how to reduce your ViewState size. Also very simple to implement. http://szokelizer.blogsome.com/2006/11/09/how-to-put-controlstate-into-viewstate-and-how-to-put-viewstate-into-session/ Related posts:Official JqGrid ASP.Net Web Forms Control Alpha Demo First look at the official JqGrid ASP.Net Web Forms control... jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations... Default Button [...]


Related posts:<ol><li><a href='http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo' rel='bookmark' title='Permanent Link: Official JqGrid ASP.Net Web Forms Control Alpha Demo'>Official JqGrid ASP.Net Web Forms Control Alpha Demo</a> <small>First look at the official JqGrid ASP.Net Web Forms control...</small></li>
<li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
<li><a href='http://www.lacy.ie/default-button-in-asp-net-forms' rel='bookmark' title='Permanent Link: Default Button in asp.net forms'>Default Button in asp.net forms</a> <small>Taken from http://www.metabuilders.com/Tools/DefaultButtons.aspx Often in asp.net WebForms you have multiple...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Very useful article on how to reduce your ViewState size. Also very simple to implement.</p>
<p><a href="http://szokelizer.blogsome.com/2006/11/09/how-to-put-controlstate-into-viewstate-and-how-to-put-viewstate-into-session/">http://szokelizer.blogsome.com/2006/11/09/how-to-put-controlstate-into-viewstate-and-how-to-put-viewstate-into-session/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Freducing-the-size-of-your-viewstate-in-asp-net-web-forms&amp;linkname=Reducing%20the%20size%20of%20your%20ViewState%20in%20asp.net%20web%20forms"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo' rel='bookmark' title='Permanent Link: Official JqGrid ASP.Net Web Forms Control Alpha Demo'>Official JqGrid ASP.Net Web Forms Control Alpha Demo</a> <small>First look at the official JqGrid ASP.Net Web Forms control...</small></li>
<li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
<li><a href='http://www.lacy.ie/default-button-in-asp-net-forms' rel='bookmark' title='Permanent Link: Default Button in asp.net forms'>Default Button in asp.net forms</a> <small>Taken from http://www.metabuilders.com/Tools/DefaultButtons.aspx Often in asp.net WebForms you have multiple...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/reducing-the-size-of-your-viewstate-in-asp-net-web-forms/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using RegularExpressionValidator to validate the length of a String</title>
		<link>http://www.lacy.ie/using-regularexpressionvalidator-to-validate-the-length-of-a-string</link>
		<comments>http://www.lacy.ie/using-regularexpressionvalidator-to-validate-the-length-of-a-string#comments</comments>
		<pubDate>Mon, 15 Feb 2010 10:48:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ASP.Net Webforms]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=255</guid>
		<description><![CDATA[This post I&#8217;ll keep short and sweet. If you are using a Regular Expression Validator you will have the problem that if you use a line break it won&#8217;t validate when you write something like ^.{0,n}$ even though the dot is supposed to match anything Apparently the dot isn&#8217;t supposed to match new line characters [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This post I&#8217;ll keep short and sweet.</p>
<p>If you are using a Regular Expression Validator you will have the problem that if you use a line break it won&#8217;t validate when you write something like ^.{0,n}$ <del>even though the dot is supposed to match anything</del></p>
<p><ins> Apparently the dot isn&#8217;t supposed to match new line characters</ins></p>
<p>I took the following from <a href="http://weblogs.asp.net/cosgood/archive/2003/05/06/6604.aspx">http://weblogs.asp.net/cosgood/archive/2003/05/06/6604.aspx</a> although the wrong bracket is used to close off the cardinality</p>
<blockquote><p>^(.|\s){0,n}$</p></blockquote>
<p>That&#8217;s it, just remember to escape the backslash depending on where you are setting the expression.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fusing-regularexpressionvalidator-to-validate-the-length-of-a-string&amp;linkname=Using%20RegularExpressionValidator%20to%20validate%20the%20length%20of%20a%20String"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/using-regularexpressionvalidator-to-validate-the-length-of-a-string/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>JqGrid.Net Public Beta</title>
		<link>http://www.lacy.ie/jqgrid-net-public-beta</link>
		<comments>http://www.lacy.ie/jqgrid-net-public-beta#comments</comments>
		<pubDate>Wed, 16 Sep 2009 14:04:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ASP.Net Webforms]]></category>
		<category><![CDATA[JqGrid]]></category>
		<category><![CDATA[JqGrid.Net]]></category>
		<category><![CDATA[Jquery UI]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=228</guid>
		<description><![CDATA[Just started using the ASP.Net Web Forms wrapper for JqGrid, worth taking  a look at http://trirand.net/default.aspx Related posts:Official JqGrid ASP.Net Web Forms Control Alpha Demo First look at the official JqGrid ASP.Net Web Forms control... jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations... Related posts [...]


Related posts:<ol><li><a href='http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo' rel='bookmark' title='Permanent Link: Official JqGrid ASP.Net Web Forms Control Alpha Demo'>Official JqGrid ASP.Net Web Forms Control Alpha Demo</a> <small>First look at the official JqGrid ASP.Net Web Forms control...</small></li>
<li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Just started using the ASP.Net Web Forms wrapper for JqGrid, worth taking  a look at</p>
<p><a href="http://trirand.net/default.aspx">http://trirand.net/default.aspx</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fjqgrid-net-public-beta&amp;linkname=JqGrid.Net%20Public%20Beta"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo' rel='bookmark' title='Permanent Link: Official JqGrid ASP.Net Web Forms Control Alpha Demo'>Official JqGrid ASP.Net Web Forms Control Alpha Demo</a> <small>First look at the official JqGrid ASP.Net Web Forms control...</small></li>
<li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/jqgrid-net-public-beta/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official JqGrid ASP.Net Web Forms Control Alpha Demo</title>
		<link>http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo</link>
		<comments>http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo#comments</comments>
		<pubDate>Thu, 10 Sep 2009 16:25:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[ASP.Net Webforms]]></category>
		<category><![CDATA[JqGrid]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Jquery UI]]></category>

		<guid isPermaLink="false">http://lacy.ie/?p=226</guid>
		<description><![CDATA[First look at the official JqGrid ASP.Net Web Forms control here http://www.trirand.net/jqgrid.aspx Includes support for Linq and object data sources. Related posts:jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations... JqGrid.Net Public Beta Just started using the ASP.Net Web Forms wrapper for JqGrid,... Handling Relative Paths [...]


Related posts:<ol><li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
<li><a href='http://www.lacy.ie/jqgrid-net-public-beta' rel='bookmark' title='Permanent Link: JqGrid.Net Public Beta'>JqGrid.Net Public Beta</a> <small>Just started using the ASP.Net Web Forms wrapper for JqGrid,...</small></li>
<li><a href='http://www.lacy.ie/handling-relative-paths-and-debug-mode-with-jquery-in-asp-net-web-forms' rel='bookmark' title='Permanent Link: Handling Relative Paths and debug mode with Jquery in ASP.Net Web Forms'>Handling Relative Paths and debug mode with Jquery in ASP.Net Web Forms</a> <small>I had a problem where I wanted to use the...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>First look at the official JqGrid ASP.Net Web Forms control here <a style="text-decoration: none;" href="http://www.trirand.net/jqgrid.aspx">http://www.trirand.net/jqgrid.aspx</a></p>
<p>Includes support for Linq and object data sources.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fofficial-jqgrid-asp-net-web-forms-control-alpha-demo&amp;linkname=Official%20JqGrid%20ASP.Net%20Web%20Forms%20Control%20Alpha%20Demo"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.lacy.ie/jquery-grid-plugin-jqgrid-with-asp-net-web-forms' rel='bookmark' title='Permanent Link: jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms'>jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms</a> <small>Get JqGrid here: http://www.trirand.com/blog/ So far I&#8217;ve seen two implementations...</small></li>
<li><a href='http://www.lacy.ie/jqgrid-net-public-beta' rel='bookmark' title='Permanent Link: JqGrid.Net Public Beta'>JqGrid.Net Public Beta</a> <small>Just started using the ASP.Net Web Forms wrapper for JqGrid,...</small></li>
<li><a href='http://www.lacy.ie/handling-relative-paths-and-debug-mode-with-jquery-in-asp-net-web-forms' rel='bookmark' title='Permanent Link: Handling Relative Paths and debug mode with Jquery in ASP.Net Web Forms'>Handling Relative Paths and debug mode with Jquery in ASP.Net Web Forms</a> <small>I had a problem where I wanted to use the...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/official-jqgrid-asp-net-web-forms-control-alpha-demo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->