Tagged Questions
The findcontrol tag has no wiki summary.
35
votes
4answers
17k 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 ...
10
votes
6answers
12k 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 ...
5
votes
2answers
6k views
Find control in ListView EmptyDataTemplate
I have the a ListView like this
<asp:ListView ID="ListView1" runat="server">
<EmptyDataTemplate>
<asp:Literal ID="Literal1" runat="server" text="some text"/>
...
4
votes
3answers
501 views
Trouble with FindControl and dynamicly created controls
Example code:
var div = new HtmlGenericControl("div");
div.Controls.Add(new Literal() { ID = "litSomeLit" });
var lit = (Literal)div.FindControl("litSomeLit");
Assert.IsNotNull(lit);
...
3
votes
2answers
749 views
asp.net FindControl Recursively
This is a really weird one - I will do my best to explain.
I have a basic master page:
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="master_MasterPage" %>
<!DOCTYPE ...
3
votes
4answers
810 views
Using FindControl() to find control
I have a Literal control that I am trying to locate so I can insert text into it. I have a Master page that contains several content placeholders.
<asp:Content ID="Content7" ...
3
votes
4answers
827 views
Unable to find control in asp.net Repeater control
This has got me stumped. I am trying to find a checkbox in a dynamically loaded asp.net Repeater template. The template works fine and the databinding is fine and everything displays fine but I can't ...
3
votes
1answer
2k views
Find all child controls of specific type using Enumerable.OfType<T>() or LINQ
Existed MyControl1.Controls.OfType<RadioButton>() searches only thru initial collection and do not enters to children.
Is it possible to find all child controls of specific type using ...
3
votes
3answers
4k 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 ...
3
votes
4answers
730 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 ...
3
votes
4answers
9k 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 ...
3
votes
1answer
1k views
Finding a Control in a page from a page base class
Hope you're having a good Friday and stuff... okay, so here's my question:
All my ASPX pages inherit from a base class called BasePage. BasePage inherits from:
System.Web.UI.Page
Now, how do I ...
3
votes
2answers
5k views
How do I access a control in the HeaderTemplate of my GridView
I want to have a DropDownList in the header of my GridView. In My codebehind I can't seem to access it. Here is the HeaderTemplate:
<asp:TemplateField SortExpression="EXCEPTION_TYPE">
...
2
votes
1answer
48 views
How do I find a ClientId of control in a Listview?
This question is very similar to
How do I find the Client ID of control within an ASP.NET GridView?
However I'm using a listview and a label:
<ItemTemplate>
<asp:ImageButton ...
2
votes
1answer
58 views
FindControl() return null
I trying to create application whad add controlls dynamicaly. I have masterpage, my asp:Content is here:
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
...
2
votes
3answers
104 views
gridview checkbox problem asp.net
I am trying to implement a checkbox within gridview,
The job of this checkbox is to verify a record,
When this verify button is pressed, all items with a checked checkbox are inputted into the ...
2
votes
2answers
193 views
gridview findcontrol returning empty “”
i am trying to read from a textbox within a gridview by using this code
protected void Button1_Click(object sender, EventArgs e)
{
foreach (GridViewRow row in GridView1.Rows)
...
2
votes
1answer
121 views
Access controls on gridview while using paging
I am attempting to get information at postback from a checkbox on a gridview that has multiple pages. Things work fine when there is only one page worth of data, but with paging checkboxes always ...
2
votes
1answer
2k views
How to find control in TemplateField of GridView?
How does Find control method works if i need to find any control which is inside gridview template, more specifically Item Template??
I have a hyperlink but it is not able to find the same.
Question ...
2
votes
1answer
109 views
FindControl to find a control in the page
I have a list of months on my aspx page as follows:
<ul>
<li><a id="Month1" runat="server" class="Month1" href="#">Jan</a></li>
<li><a id="Month2" ...
2
votes
1answer
177 views
In WPF, how do I find an element in a template that's switched in via a trigger?
I have a UserControl (not a lookless custom control) which, depending on some custom state properties, swaps in various ContentTemplates, all defined as resources in the associated XAML file. In the ...
2
votes
3answers
145 views
Which is faster in ASP.Net?
Our project is currently using 2 ways to find a Control inside of pages.
The first is to use .FindControl recursively.
The other is to use LINQ like this:
(from n in ...
2
votes
1answer
738 views
Panel.FindControl() method isn't finding a control that has been added to it
Consider the following code, adding 2 textboxes with the same ID (oops):
protected void Page_Load(object sender, EventArgs e)
{
string TextBoxName = "TextBox1";
Panel p = new Panel();
...
2
votes
1answer
365 views
Find control in RoleGroup of LoginView
I have some textboxes and checkboxes inside a RoleGroup of a LoginView. How can I access these controls in my code-behind?
<asp:LoginView ID="lgvAdmin" runat="server">
...
2
votes
1answer
419 views
Need help using C# FindControl
I have a repeater inside a panel.
Inside this repeater I have another panel.Upon certain conditions, I want to set this panel.visibility = false.
In the code behind, I try locating the panels on ...
2
votes
1answer
357 views
Retrieving keys and NewValues within a Formview with manual data binding
I have a Formview binded in the code file to a generic list. Now, upon editing of a record, I wish to access the Keys and NewValues out of the FormViewUpdateEventArgs parameter of the ItemUpdating ...
2
votes
4answers
2k views
Get DateTime Value from TextBox in FormView
I need to find a value in a TextBox, contained within a FormView which holds a short date.
DateTime LastPayDate = (DateTime)FormView1.FindControl("user_last_payment_date");
I get the error:
...
2
votes
1answer
351 views
ASP.NET Repeater template sub-control visibility before databind
I have a custom control which contains a Repeater control. The Repeater has an ItemTemplate. Inside that item template I have a panel which is going to hide something based on "IsEditable" a boolean ...
2
votes
2answers
326 views
Can't clear credentials textboxes on ASP.NET CreateUserWizard Control
I have a CreateUserWizard control using forms authentication on my login/create user page. I customized the CreateUserWizardStep1 so that I could add some additional validators.
After successfully ...
2
votes
2answers
470 views
change id of a server control in asp.net
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");
Now i have to ...
2
votes
3answers
12k views
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 ...
2
votes
2answers
7k 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 ...
2
votes
2answers
2k views
Finding user control in TemplateField of DetailsView
I have a DetailsView that I'm posting back - and inside of that is a UserControl. I'm having some difficulty located it in the postback data.
As an example:
<asp:DetailsView ID="dvDetailsView" ...
1
vote
1answer
22 views
Is it possible to find a control in a XAML (Silverlight) using wildcard?
Is it possible to find a control in a XAML (Silverlight) using wildcard?
Ex.. in my XAML
<TextBlock Text="Title" Grid.Row="0" Grid.Column="0" Style="{StaticResource txtBlock}" />
...
1
vote
1answer
63 views
Using FindControl to target a Literal
I have a ListView called "orderReceiptTable" which I am able to properly access from the Code Behind. Within it is a literal called "orgName" which I obviously would like to populate with an ...
1
vote
2answers
75 views
FindControl and INamingContainer
I want to word this question carefully, so helpful people don't jump in and spend their time telling me information that I already know (I don't want to waste their time).
I want to understand how ...
1
vote
1answer
89 views
DetailsView image updating problem
I have DetailsView with users Info (Name, Email, Picture). That DetailsView control can be edited.
Values are from DataBase
protected void DVUserInfoShow_ItemUpdating(object sender, ...
1
vote
3answers
2k views
Using FindControl to get GridView in a Content Page
I would like to find a GridView Control within a separate class and I am having issues doing so. I even tried placing my code in the aspx.cs page to no avail. I keep getting Object reference not set ...
1
vote
2answers
279 views
Why do I get an access violation when I access a TValueListEditor found with FindControl?
I have dynamically created TValueListEditor VCL component on a TForm. The code is located in nested procedure of one of the main form's methods. I have set:
ValueListEditor.KeyOptions := [keyEdit, ...
1
vote
4answers
172 views
Why can't FindControl find a password field on my form?
If this is not possible, how can I get the password out of the field?
dim pw1 as textbox, password as string
pw1 = ctype(FindControl("PasswordStr"), textbox)
password = pw1.text
Nope: ...
1
vote
3answers
1k views
Better way to find control in ASP.NET
I have a complex asp.net form,having even 50 to 60 fields in one form like there is Multiview, inside MultiView I have a GridView, and inside GridView I have several CheckBoxes.
Currently I am using ...
1
vote
3answers
778 views
What can cause FindControl() to throw a NullReferenceException?
I have a user control I'm building (ASP.NET 3.5, using C#).
This control is largely based on another, similar control (cut & paste inheritance, unfortunately, but there's no easy way to abstract ...
1
vote
1answer
185 views
Finding control on aspx
I have a Promote.aspx page which has a few radcomboboxes; radTerm and radOldYear. Promote.aspx also has a radgrid which is updatable by a WebUserControl, promote.ascx. This Web user control has a ...
1
vote
2answers
913 views
FindControl in Asp.Net
I'm trying to find a control in a page. The Id is available as a server control (CheckBox)
This throws exception "not able to convert string to double"
Dim taskId As HtmlInputCheckBox
i =10
taskId = ...
1
vote
2answers
693 views
Unable to Find the Control from codebehind, but able to find other controls
I am able to find the controls of all of these Lables and TextBoxes accept the edateTB. This is strange to me because it is in the same view as the sdateTB. So why would edateTB return NULL when I ...
1
vote
4answers
779 views
Find Control Asp.net
i have created
<input type="checkbox" id="test" >
using literal..
now i want to get this control so i can check if its checked or not....
how do i find this control in the aspx.cs page?
1
vote
2answers
174 views
finding control an a page with master page
I have to find a Control(a Table) in an aspx page with master page :
the Master page have this :
<asp:ContentPlaceHolder ID="MainContent" runat="server"/>
and int the child ...
1
vote
1answer
551 views
How does FindControl work in GridView?
I am trying to update a database using the GridView edit, update CommandField. I have two editable fields which are displayed as text boxes when in edit mode. When clicking submit, I am trying to put ...
1
vote
4answers
131 views
Avoid double control search in LINQ query
I have a Dictionary<string, bool> where key - control's ID and value - it's visible status to set:
var dic = new Dictionary<string, bool>
{
{ "rowFoo", true},
{ "rowBar", false },
...
1
vote
1answer
74 views
Where is my validator?
I have a validator in my page:
<asp:RequiredFieldValidator ID="rfv1" runat="server" ControlToValidate="IdentifySEDSED1TxtDate" ErrorMessage="Significant Event Date 1 is missing" ...