0
votes
1answer
15 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 b …
1
vote
2answers
38 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").FindC …
0
votes
3answers
54 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;
p …
0
votes
1answer
14 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" ru …
0
votes
3answers
178 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 pr …
0
votes
2answers
985 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 …
0
votes
3answers
234 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 …
0
votes
2answers
56 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, …
0
votes
6answers
2k views
GridView FindControl returns null when HeaderText is set
I have a GridView...
<asp:GridView EnableViewState="true"
ID="grdResults"
runat="server"
CssClass="resultsGrid"
…
0
votes
1answer
282 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 …
0
votes
1answer
187 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 …
0
votes
1answer
518 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 …
2
votes
2answers
728 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 won …
0
votes
0answers
56 views
Error while using subsonic scaffold = “Multiple controls with the same ID .. were found. FindControl requires that controls have unique IDs. “
I get this error when i try and edit a row on the tables that have keys connecting to the "AvailableHostname" table. All other tables edit fine.
How can i fix this?
Thank you so mu …
1
vote
2answers
691 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 …
