0
votes
3answers
43 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> …
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");
…
0
votes
3answers
58 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
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
1answer
22 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
236 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
276 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
325 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 …
0
votes
1answer
597 views
Problem finding web control inside of Gridview TemplateField
Okay, so I'm having issues getting the value of a DropDownList that's inside of a TemplateField when updating my GridView. Originally I was using the RowCommand event to check the command name and …
0
votes
1answer
207 views
FindControl not finding dynamcily added user control in wizard control
I have a wizard control in wich I am adding a user control containing a simple table with
some input fields based on users entry of how many children they have. ex: how many kids do you have so I add …
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 …
0
votes
2answers
1k views
FindControl in DataList Edit Mode
As a new .net/C# web begginner, I always get tripped up when I try to use FindControl. Blam -flat on my face. Here is my current FindControl problem:
I have an .aspx page and Form, then ajax …
0
votes
1answer
435 views
Can’t find control in edit mode in DataList
private void BindDataList()
{
int userId = Convert.ToInt32(ProfileInfo.GetUserID());
DataList1.DataSource = CatalogAccess.GetAddressByUserID(userId);
DataList1.DataBind();
…
0
votes
3answers
798 views
Finding control within WPF itemscontrol
Hi i have few a single textbox within the the datatemplate for itemscontrol. When i binf the itemcontrols to a observable collection i get two text boxes. But i need to do some manipulations based on …
