Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / Building Controls / May 2005

Tip: Looking for answers? Try searching our database.

Problem with FindControl

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
lisa@starways.net - 23 May 2005 16:09 GMT
I've been trying to build a tab control, as an alternative to the MS IE
TabStrip and MultiPage.

It works great.  Except for anything that's actually put onto one of
the tabs.

Controls on the tabs render fine, but their postback events and
postback data changes just don't happen.  I've been working a seriously
kludgy thing to get around this and manually raise postback data and
event stuff, but I shouldn't have to be doing that.  I have the source
code for the MS IE controls, and they don't do anything like that.

I did some comparisons in debug mode, and I found a difference, but I
don't understand the significance of it.  If I type in the ID of a
control that's on one of the tabs, all of its info shows up, in both my
control and theirs.  But if I do FindControl(controlID), the control on
the MS MultiPage is seen, and the one on mine returns Nothing.

Here's a partial listing.  btnInside is on a Tab in my TabControl, and
btnDelItem is on a PageView in an MS MultiPage control:

?btnInside
{System.Web.UI.WebControls.Button}
   BindingContainer: {ASP.WebForm4_aspx}
   CausesValidation: True
   ClientID: "btnInside"
   CommandArgument: ""
   CommandName: ""
   Enabled: True
   EnableViewState: True
   ID: "btnInside"
   NamingContainer: {ASP.WebForm4_aspx}
   Page: {ASP.WebForm4_aspx}
   Parent: {MyStuff.WebPL.Tab}
   Site: Nothing
   TemplateSourceDirectory: "/LisaTest"
   Text: "btnInside"
   UniqueID: "btnInside"
   Visible: True

?FindControl("btnInside")
Nothing

?btnDelItem
{System.Web.UI.WebControls.Button}
   BindingContainer: {ASP.default_aspx}
   CausesValidation: True
   ClientID: "btnDelItem"
   CommandArgument: ""
   CommandName: ""
   Enabled: True
   EnableViewState: True
   ID: "btnDelItem"
   NamingContainer: {ASP.default_aspx}
   Page: {ASP.default_aspx}
   Parent: {Microsoft.Web.UI.WebControls.PageView}
   Site: Nothing
   TemplateSourceDirectory: "/QMI"
   Text: "Delete"
   UniqueID: "btnDelItem"
   Visible: True

?FindControl("btnDelItem")
{System.Web.UI.WebControls.Button}
   [System.Web.UI.WebControls.Button]:
{System.Web.UI.WebControls.Button}
   BindingContainer: {ASP.default_aspx}
   ClientID: "btnDelItem"
   EnableViewState: True
   ID: "btnDelItem"
   NamingContainer: {ASP.default_aspx}
   Page: {ASP.default_aspx}
   Parent: {Microsoft.Web.UI.WebControls.PageView}
   Site: Nothing
   TemplateSourceDirectory: "/QMI"
   UniqueID: "btnDelItem"
   Visible: True

Neither the PageView or the Tab have an ID set.  I'm sure that the
difference when I try FindControl has to be related to the problem I'm
having, but I just keep coming up with nothing.

If anyone can help, I'd be so grateful.

Thanks,
Lisa
Sergey Polyakov - 31 May 2005 12:27 GMT
Hello Lisa

> Controls on the tabs render fine, but their postback events and
> postback data changes just don't happen.

You may try to check in debug mode the "__EVENTTARGET" hidden input value
(available via request params) against your control's unique id. Obviously
they don't match and WebForms can't find control to call the
RaisePostBackEvent method.

> I did some comparisons in debug mode, and I found a difference, but I
> don't understand the significance of it.  If I type in the ID of a
> control that's on one of the tabs, all of its info shows up, in both my
> control and theirs.  But if I do FindControl(controlID), the control on
> the MS MultiPage is seen, and the one on mine returns Nothing.

Usually problems with FindControl method occur due to NamingContainer or
unique id issues (for example if a control inherits from the
INamingContainer interface and one of its child controls also inherits from
this interface the FindControl method of the parent 'NamingContainer'
control will not find controls nested within its child 'NamingContainer'
control). But according to the extract from your debug information it looks
like both naming containers and unique ids are ok.

Best regards,
Sergey

> Here's a partial listing.  btnInside is on a Tab in my TabControl, and
> btnDelItem is on a PageView in an MS MultiPage control:
[quoted text clipped - 64 lines]
> Thanks,
> Lisa

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.