ObjectDataSource reacts to commented-out GridView? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T01:51:04Zhttp://stackoverflow.com/feeds/question/917297http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/917297/objectdatasource-reacts-to-commented-out-gridview2ObjectDataSource reacts to commented-out GridView?Ryan2009-05-27T18:27:02Z2009-05-28T20:12:42Z
<p>I came across a very strange behavior in asp.net's <code>ObjectDataSource</code>, the description to reproduce is somewhat long, so bear with me while I set the scene. </p>
<p>So, imagine a trivial ObjectDataSource/GridView combo in a User Control. The ObjectDataSource calls a method which returns a <code>List</code> of objects, and the GridView shows these objects in tabular form:</p>
<pre><code><div runat="server" ID="ControlWrapper">
<asp:GridView ID="GridView1" AutoGenerateColumns="true" DataSourceID="ObjDataSource1" OnRowDataBound="GridView1_RowBound" runat="server">
</asp:GridView>
</div>
<asp:ObjectDataSource ID="ObjDataSource1" runat="server" SelectMethod="GetBundle" OnSelecting="FixDataSource_Selecting" OnSelected="FixDataSource_Selected"
TypeName="West.VitalSigns.Contracts.ProdFixController">
</asp:ObjectDataSource>
</code></pre>
<p>This approach will work with pretty much nothing in the code-behind. But let's say that we want to create n number of <code>GridView</code>-s depending on the contents of the database. So we comment out the GridView in the markup...</p>
<pre><code><div runat="server" ID="ControlWrapper">
<!--
<asp:GridView ID="GridView1" AutoGenerateColumns="true" DataSourceID="ObjDataSource1" OnRowDataBound="GridView1_RowBound" runat="server">
</asp:GridView>
-->
</div>
</code></pre>
<p>...and add something like this to the ObjectDataSource's <code>Selected</code> event handler:</p>
<pre><code>protected void FixDataSource_Selected(object sender, ObjectDataSourceStatusEventArgs args)
{
HashSet<string> components = new HashSet<string<()
foreach (ProdFix fix in (List<ProdFix>)args.ReturnValue)
{
if (!components.Contains(fix.Component))
{
GridView v = new GridView();
v.ID=fix.Component.Replace(" " ,"").Replace("-","");
v.AutoGenerateColumns = true;
v.DataSource = args.ReturnValue;
v.RowDataBound +=new GridViewRowEventHandler(BundleGrid_RowBound);
ControlWrapper.Controls.Add(v);
components.Add(fix.Component);
}
}
}
</code></pre>
<p>This code works (or at least the un-simplified version works on my machine), so you decide to remove the commented-out section from the markup (don't want that cruft hanging around, after all!)</p>
<pre><code><div runat="server" ID="ControlWrapper">
</div>
</code></pre>
<p>When you do this, however, <strong>the code no longer works!</strong> The ObjectDataSource won't fire, which means that the <code>Selected</code> event will never happen, which means you won't get your <code>GridView</code>-s. It looks like ObjectDataSource is reacting to commented-out markup in the aspx file?</p>
<p>So, is this:</p>
<ul>
<li>A bug in ASP.NET?</li>
<li>A non-standard way of dynamically creating GridViews?</li>
<li>A WTF that I shouldn't have tried anyway?</li>
<li>All of the above?</li>
</ul>
http://stackoverflow.com/questions/917297/objectdatasource-reacts-to-commented-out-gridview/917347#9173474Answer by cdonner for ObjectDataSource reacts to commented-out GridView?cdonner2009-05-27T18:40:51Z2009-05-27T18:40:51Z<p>Your gridview control in the markup is not hidden, even with the comments. HTML comments do not apply to server-side tags. Use server side comments instead:</p>
<pre><code><% /* %> <% */ %>
</code></pre>
<p>or </p>
<pre><code><%-– and -–%>
</code></pre>
http://stackoverflow.com/questions/917297/objectdatasource-reacts-to-commented-out-gridview/922869#9228690Answer by Ryan for ObjectDataSource reacts to commented-out GridView?Ryan2009-05-28T20:01:08Z2009-05-28T20:01:08Z<p>24hrs later, I noticed that this approach to getting N number of grid-views was pretty silly. Instead of using an <code>ObjectDataSource</code> I refactored my code to just call the <code>GetBundle</code> method directly from Page_Load() and create the GridViews programatically. </p>
<p>cdonner has the answer correct about the server-side comments. I didn't realize that there was a difference. </p>
http://stackoverflow.com/questions/917297/objectdatasource-reacts-to-commented-out-gridview/922909#9229090Answer by VVS for ObjectDataSource reacts to commented-out GridView?VVS2009-05-28T20:12:42Z2009-05-28T20:12:42Z<p>This should work too, since you're "disabling" the tag with it:</p>
<pre><code><!--asp:GridView ID="GridView1" AutoGenerateColumns="true" DataSourceID="ObjDataSource1" OnRowDataBound="GridView1_RowBound" runat="server">
</asp:GridView-->
</code></pre>