2
votes
2answers
788 views
How to find controls in a repeater header or footer
I was wondering how one would find the controls in the HeaderTemplate or FooterTemplate of an Asp.Net Repeater control.
I can access them on the ItemDataBound event, but I was wondering how to get …
1
vote
2answers
47 views
change id of a server control in asp.net
Hai guys,
I used find control to find a list item of an unoreder list inside a master page from content page using this,
Control home = this.Page.Master.FindControl("list").FindControl("home");
…
1
vote
3answers
2k views
[ASP.NET] Access a content control in C# when using Master Pages
Good day everyone,
I am building a page in ASP.NET, and using Master Pages in the process.
I have a Content Place Holder name "cphBody" in my Master Page, which will contain the body of each Page …
1
vote
2answers
746 views
Problem finding a control within a FormView from code-behind
Here the code behind... I'm trying to retrieve this control so I can add items to the drop down list (I'm retrieving the Role Groups to add to the drop down list in the code-behind)
Protected Sub …
1
vote
1answer
363 views
e.Item.FindControl throws Object reference not set to an instance of an object.
Here is the part of Repeater code that throws exception... "Computer.Administrators" is StringCollection object. Debugger shows that "AdminsEnumerator.Current" gets correct string value but when …
1
vote
4answers
1k views
ASP.Net FindControl is not working - How come?
I have used FindControl in the past, prior to .NET 2.0/3.0. It seems like now, for some reason, the ID's of my controls get a funky named assigned. For example I assigned an id "cbSelect" to a …
1
vote
6answers
1k views
Parent.FindControl() not working?
I have a page that has an iframe
From one of the pages within the iframe I want to look back and make a panel on the default page invisible because it is overshadowing a popup
I tried using …
0
votes
3answers
45 views
How can i find a control in the footer template of a data repeater
ASPX : Code
<asp:repeater id="repeater" runat="server">
<headerTemplate></headerTemplate>
<itemtemplate></itemtemplate>
<footerTemplate> …
0
votes
1answer
18 views
Change text of a linkbutton in a repeater
I have a repeater which displays comments related to a post.
I want to add some functionality where when the user click on the link it goes from:
report this post
to
post has been flagged
how do …
0
votes
3answers
59 views
Have I to cache FindControl() result if I use it a number of times?
Does FindControl() work quick or not?
Have I to cache a result using a property like this or not if I search and use the same control a number of time?
private MyUserControl c;
private MyUserControl …
0
votes
1answer
23 views
ASP.NET: How do I implement my own AssociatedControlID-like functionality?
I have two user controls A and B, where B depends on the existence of A in the same page.
I'm trying to implement some functionality like this:
<mine:A ID="IdOfTheAControl" runat="server" />
…
0
votes
3answers
237 views
FindControl method cannot locate the control on the page
Hello everyone,
Ive tried searching for hours now and cannot find out why my code (aka, me.) is failing
Basically... I have a listview control which I'm passing a datatable of products (ID, Name, …
0
votes
3answers
278 views
Using FindControl: Accessing Controls in a Formview
I'm developing a simple Wedding List application, where guests can reserve the present they want to buy for the bride and groom. The Reserve page wraps a few fields inside a couple of panels, all …
0
votes
2answers
63 views
Nested Masterpages and .FindControl
On one site, I'm only using a single level Masterpage and in a page using that master, I can do this.Master.FindControl("controlName") to access the control. Works fine.
However, using the same code …
0
votes
1answer
327 views
ASP.NET FormView.FindControl object reference error
I have a formview that has several textboxes inside of tr/td's. I'm trying to get the textboxes by using the .FindControl method but it's coming back null. The FormView is always in Edit mode (so …
