Home All Groups Group Topic Archive Search About

Can't duplicate ID in subclassed GridView

Author
22 Oct 2006 3:51 AM
David Thielen
Hi;

I switched two controls from GridView to EmptyGridView. When it was GridVIew
both controls (on the same page) had a
<Columns><TemplateField><ItemTemplate><LinkButton ID="DeleteButton"... and it
was ok that both had the same ID name.

Once I switched to EmptyGridView that is now an error and I cannot build
unles I rename one. As EmptyGridView inherits from GridView why is this a
problem?

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm

Author
23 Oct 2006 9:45 AM
Walter Wang [MSFT]
Hi David,

This is a quick note to let you know that I am performing research on this
issue and will get back to you as soon as possible. I appreciate your
patience.

Sincerely,
Walter Wang (waw***@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Author
26 Oct 2006 5:24 AM
Walter Wang [MSFT]
Hi David,

Unfortunately I haven't found further information regarding this issue.
However, we could use another workaround.

We could use <tagMapping> in web.config to automatically change all
<asp:GridView> to use inherited EmptyGridView, provided that you want all
GridView in your web site to convert to EmptyGridView.

    <system.web>
    <pages>
      <tagMapping>
        <add tagType="System.Web.UI.WebControls.GridView"
             mappedTagType="myns.EmptyGridView,App_Code" />
      </tagMapping>
    </pages>
    </system.web>

Using this way, you don't need to modify your existing WebForm to change
tag <asp:GridView> to EmptyGridView, thus will not cause the issue you've
mentioned.

In the meanwhile, please feel free to submit your feedback at
http://connect.microsoft.com/Main/content/content.aspx?ContentID=2220
regarding this issue.

Please let me know whether or not this works for you. Thanks.

Regards,
Walter Wang (waw***@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Author
26 Oct 2006 3:23 PM
David Thielen
ok - thanks. Can you let the dev team know about this?

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm




Show quoteHide quote
"Walter Wang [MSFT]" wrote:

> Hi David,
>
> Unfortunately I haven't found further information regarding this issue.
> However, we could use another workaround.
>
> We could use <tagMapping> in web.config to automatically change all
> <asp:GridView> to use inherited EmptyGridView, provided that you want all
> GridView in your web site to convert to EmptyGridView.
>
>     <system.web>
>     <pages>
>       <tagMapping>
>         <add tagType="System.Web.UI.WebControls.GridView"
>              mappedTagType="myns.EmptyGridView,App_Code" />
>       </tagMapping>
>     </pages>
>     </system.web>
>
> Using this way, you don't need to modify your existing WebForm to change
> tag <asp:GridView> to EmptyGridView, thus will not cause the issue you've
> mentioned.
>
> In the meanwhile, please feel free to submit your feedback at
> http://connect.microsoft.com/Main/content/content.aspx?ContentID=2220
> regarding this issue.
>
> Please let me know whether or not this works for you. Thanks.
>
> Regards,
> Walter Wang (waw***@online.microsoft.com, remove 'online.')
> Microsoft Online Community Support
>
> ==================================================
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> ==================================================
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
Author
27 Oct 2006 3:32 AM
Walter Wang [MSFT]
Sure, we will report this to product team. Thank you for your feedback.

Regards,
Walter Wang (waw***@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.