ObjectDataSource reacts to commented-out GridView? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:51:04Z http://stackoverflow.com/feeds/question/917297 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/917297/objectdatasource-reacts-to-commented-out-gridview 2 ObjectDataSource reacts to commented-out GridView? Ryan 2009-05-27T18:27:02Z 2009-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>&lt;div runat="server" ID="ControlWrapper"&gt; &lt;asp:GridView ID="GridView1" AutoGenerateColumns="true" DataSourceID="ObjDataSource1" OnRowDataBound="GridView1_RowBound" runat="server"&gt; &lt;/asp:GridView&gt; &lt;/div&gt; &lt;asp:ObjectDataSource ID="ObjDataSource1" runat="server" SelectMethod="GetBundle" OnSelecting="FixDataSource_Selecting" OnSelected="FixDataSource_Selected" TypeName="West.VitalSigns.Contracts.ProdFixController"&gt; &lt;/asp:ObjectDataSource&gt; </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>&lt;div runat="server" ID="ControlWrapper"&gt; &lt;!-- &lt;asp:GridView ID="GridView1" AutoGenerateColumns="true" DataSourceID="ObjDataSource1" OnRowDataBound="GridView1_RowBound" runat="server"&gt; &lt;/asp:GridView&gt; --&gt; &lt;/div&gt; </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&lt;string&gt; components = new HashSet&lt;string&lt;() foreach (ProdFix fix in (List&lt;ProdFix&gt;)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>&lt;div runat="server" ID="ControlWrapper"&gt; &lt;/div&gt; </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#917347 4 Answer by cdonner for ObjectDataSource reacts to commented-out GridView? cdonner 2009-05-27T18:40:51Z 2009-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>&lt;% /* %&gt; &lt;% */ %&gt; </code></pre> <p>or </p> <pre><code>&lt;%-– and -–%&gt; </code></pre> http://stackoverflow.com/questions/917297/objectdatasource-reacts-to-commented-out-gridview/922869#922869 0 Answer by Ryan for ObjectDataSource reacts to commented-out GridView? Ryan 2009-05-28T20:01:08Z 2009-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#922909 0 Answer by VVS for ObjectDataSource reacts to commented-out GridView? VVS 2009-05-28T20:12:42Z 2009-05-28T20:12:42Z <p>This should work too, since you're "disabling" the tag with it:</p> <pre><code>&lt;!--asp:GridView ID="GridView1" AutoGenerateColumns="true" DataSourceID="ObjDataSource1" OnRowDataBound="GridView1_RowBound" runat="server"&gt; &lt;/asp:GridView--&gt; </code></pre>