active questions tagged findcontrol - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T19:37:11Zhttp://stackoverflow.com/feeds/tag/findcontrolhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1939325/page-findcontrol-from-webservercontrol0Page.FindControl from WebServerControlThe King2009-12-21T10:24:59Z2009-12-21T10:52:40Z
<p>Hi All,</p>
<p>I use a WebServerControl "CheckBoxCounter", which has the following method. But the method is unable to find the CheckBoxList on the page. I'm searching for an answer for nearly a day now... can you help me... <strong>The WebServerControl is in a namespace "AWT.AID.Services", but there is no namespace for the ASPX page / code Behind, will this affect the result.</strong></p>
<pre><code> protected virtual CheckBoxList GetCheckBoxListControl()
{
// this.CheckBoxListID will be "WorkArea:LbxState"
if (string.IsNullOrEmpty(this.CheckBoxListID))
throw new HttpException(string.Format("Value required for the CheckBoxListID property for the CheckBoxCounter control with ID '{0}'.", this.ID));
String[] strctrl = this.CheckBoxListID.Split(':');
Control ctrl= new Control();
for (int i=0;i<strctrl.Length;i++)
{
if (i==0)
{
ctrl = this.Page.FindControl(strctrl[i]);
}
else
{
ctrl = ctrl.FindControl(strctrl[i]);
}
if (ctrl == null)
{
throw new HttpException(string.Format("The CheckBoxCounter control with ID '{0}' could not find a control with the ID '{1}'.", this.ID, ctrl));
}
}
CheckBoxList Cbl = ctrl as CheckBoxList;
if (Cbl == null)
throw new HttpException(string.Format("The CheckBoxCounter control with ID '{0}' could not find a CheckBoxList control with the ID '{1}'.", this.ID, this.CheckBoxListID));
return Cbl;
}
</code></pre>
<p>I use this control in a WebPage like this</p>
<pre><code> <%@ Page Language="C#" MasterPageFile="~/Shared/Default.master" AutoEventWireup="true" CodeFile="Instructions_Add.aspx.cs" Inherits="AID_Instructions_Add" Title="Untitled Page" %>
<%@ Register Assembly="AID" Namespace="AWT.AID.Services" TagPrefix="cc2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="WorkArea" Runat="Server">
<table width="100%" border="0">
<tr>
<td class="Labl">
<asp:Label ID="LblState" runat="server" Text="State"></asp:Label>
<cc2:CheckBoxCounter ID="CBCState" runat="server" CheckBoxListID="WorkArea:LbxState" />
</td>
<td class="Obj" >
<div class="LeftOpen" style="OVERFLOW: auto; WIDTH: 100%; HEIGHT: 100px;">
<asp:CheckBoxList ID="LbxState" CssClass="Obj" runat="server" Width="90%" DataTextField="StateName" DataValueField="StateCode" AppendDataBoundItems="True">
<asp:ListItem Selected="True">ALL</asp:ListItem>
</asp:CheckBoxList>
</div></td>
</tr>
</table>
</asp:Content>
</code></pre>
http://stackoverflow.com/questions/701412/how-to-find-controls-in-a-repeater-header-or-footer2How to find controls in a repeater header or footerCrossbrowser2009-03-31T15:00:12Z2009-12-17T08:16:06Z
<p>I was wondering how one would find the controls in the HeaderTemplate or FooterTemplate of an Asp.Net Repeater control.</p>
<p>I can access them on the ItemDataBound event, but I was wondering how to get them after (for example to retrieve a value of an input in the header/footer).</p>
<p>Note: I posted this question here after finding the answer just so that I remember it (and maybe other people might find this useful).</p>
http://stackoverflow.com/questions/1905145/how-to-add-controls-to-the-masterpages-content-placeholder-programmatically0how to add controls to the masterpage's content placeholder programmaticallyJronny2009-12-15T04:20:48Z2009-12-15T07:26:47Z
<p>On the base.master:</p>
<pre><code><%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Base.master.cs" Inherits="WebApplicationControlTest.Base" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>The title</title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<div>
There is a content here: <br />
<asp:ContentPlaceHolder ID="body" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
</body>
</html>
</code></pre>
<p>On the nested master</p>
<pre><code><%@ Master Language="C#" MasterPageFile="~/MasterPages/Base.Master" AutoEventWireup="true" CodeBehind="NestedMasterPageTest2.master.cs" Inherits="WebApplicationControlTest.MasterPages.NestedMasterPageTest2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="PlaceHolder" ContentPlaceHolderID="body" runat="server">
This is inside the NestedPage<br />
<asp:ContentPlaceHolder ID="PlaceHolderLeft" runat="server">
</asp:ContentPlaceHolder>
<asp:ContentPlaceHolder ID="PlaceHolderRight" runat="server">
</asp:ContentPlaceHolder>
</asp:Content>
</code></pre>
<p>and on the default.aspx</p>
<pre><code><asp:Content ID="PlaceHolder" ContentPlaceHolderID="PlaceHolderLeft" runat="server">
This is a test!
</asp:Content>
</code></pre>
<p>on the default.aspx.cs</p>
<pre><code>protected override void OnPreInit(EventArgs e){
Control control = LoadControl("TheUrlOfTheControl.ascx");
if (Page.Master.FindControl("body") != null) {
Page.Master.FindControl("body").Controls.Add(control);
}
}
</code></pre>
<p>I need to add the control to the last part of the body content Placeholder but FindControl does return null... how can we add controls to the masterpage's content placeholder programmatically?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1880519/datagrid-finding-a-control0DataGrid finding a controlnat2009-12-10T12:02:58Z2009-12-10T12:20:11Z
<p>HI</p>
<p>I have a DataGrid (yes would be nicer if it was a gridview but nothing i can do about that)</p>
<p>in the itemDataBound event i am adding a hidden field into the first cell of each row
I am setting its ID based on something, and then saving its clientID in a List for later attempts to get the value from it</p>
<p>but try as i might i cant find anything with findcontrol</p>
<p>have tried</p>
<p>here is the itemdatabound bit</p>
<pre><code>foreach(page in datasource){
HiddenField hidOrder = new HiddenField();
hidOrder.ID = "order_" + page.Id.ToString();
hidOrder.Value = page.Ordering.ToString();
e.Item.Cells[0].Controls.Add(hidOrder);
idList.Add(hidOrder.ClientID);
}
</code></pre>
<p>then this is a button click event..</p>
<pre><code>int numRows = FrontEndDataGrid.Items.Count;
for (int i = 0; i < numRows; i++){
foreach(string hidID in idList){
HiddenField hf = FrontEndDataGrid.Items[i].FindControl(hidID) as HiddenField;
//ssadly this never finds anything
//have also tried looping around the cells for each 'row' - no luck there either
}
}
</code></pre>
<p>any ideas?</p>
<p>thanks</p>
<p>nat</p>
http://stackoverflow.com/questions/1822448/how-can-i-find-a-control-in-the-footer-template-of-a-data-repeater0How can i find a control in the footer template of a data repeatersia2009-11-30T21:16:08Z2009-12-01T15:13:14Z
<h3>ASPX : Code</h3>
<blockquote>
<p><code><asp:repeater id="repeater" runat="server"></code></p>
<p><code><headerTemplate></headerTemplate></code></p>
<p><code><itemtemplate></itemtemplate></code></p>
</blockquote>
<h3><code><footerTemplate> <asp:literal id=findme runate=server> </footerTeplate></code></h3>
<blockquote>
<p><code></asp:repeater></code></p>
</blockquote>
<p>What i am looking for is source code to be able to find the control within the footer of a data repeater. Im familiar with the basic "FindControl" when i do a databind or look for control within the page itself, but how can i find the control within a footer template of a data repeater?</p>
<p>Is this even possible? and if so how can i please get some assistance, </p>
<p>thanks again to all!!!</p>
<h3>[update]</h3>
<p>i need to be able to do this after the databind</p>
http://stackoverflow.com/questions/1767418/change-text-of-a-linkbutton-in-a-repeater0Change text of a linkbutton in a repeaterJackM2009-11-19T23:46:34Z2009-11-19T23:50:04Z
<p>I have a repeater which displays comments related to a post.</p>
<p>I want to add some functionality where when the user click on the link it goes from:</p>
<p><em>report this post</em></p>
<p>to</p>
<p><em>post has been flagged</em></p>
<p>how do I access the specific lnkButton? Obviously in ItemDataBound this is easily done, but in the click method I'm not sure how I would do it.</p>
<p>Do I need to do something like:</p>
<p>I tried something like this;</p>
<pre><code>LinkButton lb = repeater.FindControl(LINK_BUTTON_UNIQUE_ID) as LinkButton;
lb.Text = "blah blah blah";
</code></pre>
<p>but lb is always null.</p>
<p>Any help would be appreciated, thanks!</p>
http://stackoverflow.com/questions/1762802/change-id-of-a-server-control-in-asp-net2change id of a server control in asp.netPandiya Chendur2009-11-19T11:56:23Z2009-11-19T14:56:13Z
<p>Hai guys,</p>
<p>I used find control to find a list item of an unoreder list inside a master page from content page using this,</p>
<pre><code>Control home = this.Page.Master.FindControl("list").FindControl("home");
</code></pre>
<p>Now i have to change the id of the control home to "current" because to apply css for it....</p>
http://stackoverflow.com/questions/1747837/have-i-to-cache-findcontrol-result-if-i-use-it-a-number-of-times0Have I to cache FindControl() result if I use it a number of times?abatishchev2009-11-17T10:11:19Z2009-11-17T11:12:16Z
<p>Does <code>FindControl()</code> work quick or not?</p>
<p>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?</p>
<pre><code>private MyUserControl c;
private MyUserControl MyC {
get {
if(c == null) c = (MyUserControl)FindControl("c");
return c;
}
}
</code></pre>
http://stackoverflow.com/questions/1722592/asp-net-how-do-i-implement-my-own-associatedcontrolid-like-functionality0ASP.NET: How do I implement my own AssociatedControlID-like functionality?blahblah2009-11-12T14:35:38Z2009-11-12T14:45:34Z
<p>I have two user controls A and B, where B depends on the existence of A in the same page.</p>
<p>I'm trying to implement some functionality like this:</p>
<pre><code><mine:A ID="IdOfTheAControl" runat="server" />
<mine:B BelongsTo="IdOfTheAControl" runat="server" />
</code></pre>
<p>I'm able to extract <code>"IdOfTheAControl"</code> but unable to get the actual control with that ID. I tried to use <code>FindControl("IdOfTheAControl")</code> in <code>Page_Load</code> for <code>B</code> but this returns <code>null</code>, probably because the function looks for the control in <code>B.ascx</code> and not the master page where the two controls are siblings.</p>
<p>How do I, from a user control, get access to another user control with a given ID if the two controls are siblings in a page?</p>
http://stackoverflow.com/questions/1631067/findcontrol-method-cannot-locate-the-control-on-the-page0FindControl method cannot locate the control on the pagefishkopter2009-10-27T14:08:51Z2009-10-27T14:37:00Z
<p>Hello everyone,</p>
<p>Ive tried searching for hours now and cannot find out why my code (aka, me.) is failing</p>
<p>Basically... I have a listview control which I'm passing a datatable of products (ID, Name, Description and Price columns), and im trying to make it so that when the "checkout" button is pressed, it parses through all the controls on the page, finds all the controls with the correct ID's and adds the items values to the cart.</p>
<p>ive checked all my ID's in the source code and they match up to the ones being requested by the FindControl method.</p>
<p>the error getting thrown back is:</p>
<pre><code>Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Line 21: For I = 1 To counter
Line 22: Dim cartItem As New Core.Types.CartItem
Line 23: cartItem.Name = CType(productsContainer.FindControl("product" + I.ToString()), HtmlGenericControl).InnerText
Line 24: cartItem.Quantity = Convert.ToInt32(CType(productsContainer.FindControl("quantity" + I.ToString()), HtmlSelect).Value)
Line 25: cartItem.Price = Convert.ToDecimal(CType(productsContainer.FindControl("price" + I.ToString()), HtmlGenericControl).InnerText.Remove(0, 1))
</code></pre>
<p>my .aspx code:</p>
<pre><code> <div class="productsContainer" id="productsContainer" runat="server">
<asp:ListView runat="server" ID="lsvProducts">
<LayoutTemplate>
<ul class="lsvProducts">
<li class="highlight">
<div class="productName">
Product
</div>
<div class="productQuantity">
Number of Licenses
</div>
<div class="productPrice">
Price
</div>
</li>
<asp:PlaceHolder ID="itemPlaceHolder" runat="server"></asp:PlaceHolder>
</ul>
</LayoutTemplate>
<ItemTemplate>
<li>
<div style="display: none;">
<%=setCurrent()%>
</div>
<input type="hidden" id='productID<%#Eval("ID")%>' />
<div class="productName" id='product<%=currentItem%>'>
<%#Eval("Name")%>
</div>
<div class="productQuantity">
<select id='quantity<%=currentItem%>'>
<option selected="selected"
value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
</div>
<div class="productPrice" id='price<%=currentItem%>'>
<%#"$" + Convert.ToDouble(Eval("Price")).ToString()%>
</div>
</li>
</ItemTemplate>
</asp:ListView>
</div>
<div class="clearer">
&nbsp;</div>
<div class="purchaseButton">
<asp:Button ID="btnAddCart" runat="server" Text="Add to Cart" />
</div>
</div>
</code></pre>
<p>and my code behind:</p>
<pre><code> Dim counter As Int32
Public currentItem As Int32
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'get all active products to display in the listing
Dim query As String = "SELECT * FROM Products WHERE Active = 1"
Dim dt As DataTable = DAL.Data.GetDataTable(query, "MainDB")
counter = dt.Rows.Count
lsvProducts.DataSource = dt
lsvProducts.DataBind()
End Sub
Protected Sub btnAddCart_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnAddCart.Click
'create a new instance of the cart
Dim cart As New Core.Types.Cart
'foreach item in the listing, find its details and add it to the shopping cart
For I = 1 To counter
Dim cartItem As New Core.Types.CartItem
cartItem.Name = CType(productsContainer.FindControl("product" + I.ToString()), HtmlGenericControl).InnerText
cartItem.Quantity = Convert.ToInt32(CType(productsContainer.FindControl("quantity" + I.ToString()), HtmlSelect).Value)
cartItem.Price = Convert.ToDecimal(CType(productsContainer.FindControl("price" + I.ToString()), HtmlGenericControl).InnerText.Remove(0, 1))
cartItem.ID = Convert.ToInt32(CType(productsContainer.FindControl("productID" + I.ToString()), HtmlGenericControl).InnerText)
cart.AddItem(cartItem)
Next
If (cart.isEmpty) Then
'empty cart, go nowhere. show a message saying the carts empty and to choose something.
Else
Response.Redirect("~/Checkout.aspx")
End If
End Sub
Public Function setCurrent()
currentItem = currentItem + 1
Return currentItem
End Function
</code></pre>
<p>Please help... this is driving me insane!</p>
<p>Thanks in advance :)</p>
http://stackoverflow.com/questions/740544/findcontrol-in-datalist-edit-mode0FindControl in DataList Edit ModeDoug2009-04-11T18:03:44Z2009-10-22T11:00:01Z
<p>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:</p>
<p>I have an .aspx page and Form, then ajax updatePanel, inside it there is my DataList (DataList1) that has an EditItemTemplate: that has the following:</p>
<pre><code><EditItemTemplate>
<asp:Label ID="thumbnailUploadLabel" runat="server" text="Upload a new thumbnail image:"/><br />
<asp:FileUpload ID="thumbnailImageUpload" runat="server" />
<asp:Button ID="thunbnailImageUploadButton" runat="server" Text="Upload Now" OnClick="thumbnailUpload"/><br />
</EditItemTemplate>
</code></pre>
<p>In my C# code behind I have the OnClick code for the fileUpload object:</p>
<pre><code> protected void thumbnailUpload(object s, EventArgs e)
{
if (thumbnailImageUpload.HasFile)
{
//get name of the file & upload
string imageName = thumbnailImageUpload.FileName;
thumbnailImageUpload.SaveAs(MapPath("../../images/merch_sm/" + imageName));
//let'em know that it worked (or didn't)
thumbnailUploadLabel.Text = "Image " + imageName + "has been uploaded.";
}
else
{
thumbnailUploadLabel.Text = "Please choose a thumbnail image to upload.";
}
</code></pre>
<p>So of course I'm getting "Object reference not set to an instance of an object" for the FileUpload and the Label. </p>
<p>What is the correct syntax to find these controls, before dealing with them in the OnClick event?</p>
<p>The only way Ive used FindControl is something like:</p>
<p>label thumbnailUploadLabel = DataList1.FindControl("thumbnailUploadLabel") as Label;</p>
<p>But of course this is throwing the "Object reference not set to an instance of an object" error. Any help is very much appreciated.</p>
<p>(I've also seen the 'recursive' code out there that is supposed to make using FindControl easier. Ha! I'm so green at C# that I don't even know how to incorporate those into my project.)</p>
<p>Thanks to all for taking a look at this.</p>
http://stackoverflow.com/questions/1603947/using-findcontrol-accessing-controls-in-a-formview0Using FindControl: Accessing Controls in a FormviewCJM2009-10-21T22:09:32Z2009-10-22T00:29:18Z
<p>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 wrapped inside a FormView.</p>
<p>The user enters their name, email and the quantity of items that they want to reserve, and the page will make the necessary reservations in the DB.</p>
<p>My first problem was that in FormView_ItemCommand, I couldn't reference any of the other controls in the FormView.... I figured this was a case for FindControl - but why do I need to for a Formview when I've never needed it for ListViews or DetailViews?</p>
<p>Secondly, I know the following code works..</p>
<pre><code>Dim oCtrl as TextBox = Me.fvwReservation.FindControl("txtEmail")
Dim Test As String = oCtrl.Text
</code></pre>
<p>...but why can't I use...</p>
<pre><code>Dim Test As String = Me.fvwReservation.FindControl("txtEmail").Text
</code></pre>
<p>??</p>
<p>Finally, I don't think I need it on this occasion, but I've been researching recursive FindControl variants, but I haven't actually found one that actually compiles! Any suggestions?</p>
<p>It's a lot for one post - thanks in advance.</p>
<p>Gratuitous Code Snippet:</p>
<pre><code><asp:FormView ID="fvwReservation" runat="Server" DataSourceID="dsGift">
<ItemTemplate>
<asp:Panel runat="server" ID="pnlDetails">
<h3>Reserve Item: <%#Eval("ShortDesc")%></h3>
<p>You have chosen to reserve the <em><%#Eval("LongDesc")%></em> gift.</p>
<p>Please enter your details below to confirm the reservation.</p>
</asp:Panel>
<asp:Panel runat="server" ID="pnlConfirm">
<div class="row">
<asp:Label runat="server" CssClass="label">Name:</asp:Label><asp:TextBox ID="txtName" MaxLength="50" runat="server" CssClass="Field" />
<asp:RequiredFieldValidator ID="rfvName" runat="server" ErrorMessage="You must specify your Name" ControlToValidate="txtName" />
</div>
<div class="row">
<asp:Label runat="server" CssClass="label">Email:</asp:Label><asp:TextBox ID="txtEmail" MaxLength="100" runat="server" CssClass="Field"/>
<asp:RequiredFieldValidator ID="rfvEmail" runat="server" ErrorMessage="You must specify your Email Address" ControlToValidate="txtEmail" />
<asp:RegularExpressionValidator ID="regexEmail" ValidationExpression="^(([A-Za-z0-9]+_+)|([A-Za-z0-9]+\-+)|([A-Za-z0-9]+\.+)|([A-Za-z0-9]+\++))*[A-Za-z0-9]+@((\w+\-+)|(\w+\.))*\w{1,63}\.[a-zA-Z]{2,6}$" runat="server" ErrorMessage="Please enter a valid Email Address" ControlToValidate="txtEmail" />
</div>
<div class="row">
<asp:Label runat="server" CssClass="label">Quantity (max <%#Eval("QtyRemaining")%>):</asp:Label><asp:TextBox ID="iQty" MaxLength="2" runat="server" CssClass="Field" />
<asp:RangeValidator ID="rvQty" runat="server" ErrorMessage="The Quantity mmust be between 1 and 10" MinimumValue="1" MaximumValue="10" ControlToValidate="iQty" />
</div>
<div class="row">
<asp:Label runat="server" CssClass="label">&nbsp;</asp:Label>
<asp:Button ID="btnReserve" Text="Confirm Reservation" CommandName="Reserve" runat="server" />
</div>
</asp:Panel>
</ItemTemplate>
</asp:FormView>
</code></pre>
http://stackoverflow.com/questions/1578188/nested-masterpages-and-findcontrol0Nested Masterpages and .FindControlpeiklk2009-10-16T13:53:27Z2009-10-16T14:36:04Z
<p>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.</p>
<p>However, using the same code on a site with two masterpage levels. MainMaster and SpecificMaster which has MainMaster as its Master.</p>
<p>So on the page which uses SpecificMaster, FindControl is returning null for the object. The only difference I'm seeing is the nesting of the masterpages.</p>
<p>When I set breakpoint and look at page.Master, it's showing SpecificMaster and SpecificMaster is showing MainMaster as its master correctly, but FindControl is still failing.</p>
<p>When I view source in IE, the control is correctly named, no .NET munging going on.</p>
<p>Any thoughts here?</p>
<p>TIA!</p>
http://stackoverflow.com/questions/511459/gridview-findcontrol-returns-null-when-headertext-is-set0GridView FindControl returns null when HeaderText is setRussell Giddings2009-02-04T13:56:25Z2009-10-06T03:00:03Z
<p>I have a GridView... </p>
<pre><code><asp:GridView EnableViewState="true"
ID="grdResults"
runat="server"
CssClass="resultsGrid"
OnRowDataBound="grdResults_OnRowDataBound"
AutoGenerateColumns="false"
HeaderStyle-CssClass="header"
OnRowCommand="grdResults_OnRowCommand">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="lblView"
runat="server"
Visible="false"
Text="View">
</asp:Label>
<asp:HyperLink ID="hypEdit"
runat="server"
Visible="false"
Text="(Edit)"
CssClass="edit">
</asp:HyperLink>
<asp:LinkButton ID="btnDelete"
runat="server"
Visible="false"
Text="(Delete)"
CssClass="delete"
CommandName="DeleteItem"
OnClientClick="return confirm('Are you sure you want to delete?')">
</asp:LinkButton>
<asp:HyperLink ID="hypSelect"
runat="server"
Visible="false"
Text="(Select)"
CssClass="select">
</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</code></pre>
<p>This has one static column containing a label two hyperlinks and a link button and also has a number of dynamically generated columns...</p>
<pre><code>private void SetupColumnStructure(IEnumerable<string> columnNames)
{
var columnNumber = 0;
foreach (var columnName in columnNames)
{
var templateColumn = new TemplateField
{
ItemTemplate = new CellTemplate(columnName)
};
grdResults.Columns.Insert(columnNumber, templateColumn);
columnNumber++;
}
}
</code></pre>
<p>As part of the OnRowDataBound handler I retrieve one of the controls in the statically column and set some attributes on it...</p>
<pre><code>protected void grdResults_OnRowDataBound(object sender, GridViewRowEventArgs e)
{
.
.
.
var row = e.Row;
var rowData = row.DataItem as Dictionary<string, object>;
if (rowData != null)
{
if ((bool)rowData[displayEditLink])
{
var hypEdit = (HyperLink)row.FindControl("hypEdit");
hypEdit.NavigateUrl = "~/Pages/Edit.aspx?action=Edit&objectType=" + rowData[objectTypeLiteral] + "&id=" + rowData[objectIdLiteral];
hypEdit.Visible = true;
}
}
.
.
.
}
</code></pre>
<p>This all works fine but no column names are displayed. So I then modify the SetupColumnStructure method so that the HeaderText is set on the template field like this...</p>
<pre><code>private void SetupColumnStructure(IEnumerable<string> columnNames)
{
var columnNumber = 0;
foreach (var columnName in columnNames)
{
var templateColumn = new TemplateField
{
ItemTemplate = new CellTemplate(columnName),
HeaderText = columnName
};
grdResults.Columns.Insert(columnNumber, templateColumn);
columnNumber++;
}
}
</code></pre>
<p>For some reason this one extra line change causes the row.FindControl("hypEdit"); call in the OnRowDataBound handler to return null.Can anyone see something im missing here or has anyone experienced a similar issue?</p>
http://stackoverflow.com/questions/1485545/asp-net-formview-findcontrol-object-reference-error0ASP.NET FormView.FindControl object reference errorTone2009-09-28T05:27:05Z2009-09-28T06:19:48Z
<p>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 I'm always in the EditItemTemplate) and i'm trying to load querystring values into the textboxes coming from the previous page so I do need this to happen on page_load. I do this on Gridviews all the time like this:</p>
<pre><code>txtFirstName = (TextBox)fvGeneralInfo.FindControl("txtFirstName");
</code></pre>
<p>or like this:</p>
<pre><code>txtFirstName = (TextBox)fvGeneralInfo.FooterRow.FindControl("txtFirstName");
</code></pre>
<p>or like this:</p>
<pre><code>txtFirstName = (TextBox)fvGeneralInfo.Rows.FindControl("txtFirstName");
</code></pre>
<p>What gives?</p>
<pre><code> <asp:FormView ID="fvGeneralInfo" runat="server"
DataSourceID="objInstructorDetails"
OnItemCommand="fvGeneralInfo_ItemCommand"
OnItemUpdated="fvGeneralInfo_ItemUpdated"
DefaultMode="Edit"
DataKeyNames="InstructorID" >
<EditItemTemplate>
<table>
<tr>
<td colspan="2" class="Admin-SubHeading" style="padding-left:10px;">General Info:</td>
</tr>
<tr>
<td class="Admin-FieldLabel">ID:</td>
<td><asp:TextBox ID="txtInstructorId" runat="server" CssClass="Admin-Textbox" ReadOnly="true" Text='<%# Bind("InstructorID") %>' /></td>
</tr>
<tr>
<td class="Admin-FieldLabel">First Name:</td>
<td><asp:Textbox ID="txtFirstName" runat="server" CssClass="Admin-Textbox" Text='<%# Bind("FirstName") %>' /></td>
</tr>
</table>
</EditItemTemplate>
</asp:FormView>
</code></pre>
http://stackoverflow.com/questions/1411460/findcontrol-not-finding-dynamcily-added-user-control-in-wizard-control0FindControl not finding dynamcily added user control in wizard controlunknown (yahoo)2009-09-11T15:04:36Z2009-09-11T16:03:16Z
<p>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 the user control ascx based on that loop
that goes into step 5 of my wizard wich is also in a masterpage.</p>
<p>I then use findcontrol to atttempt the get to those input boxes so i can save the data into my db, findcontrol allway comes up null, even though the user control in visable and recreated on page load after post back.</p>
<p>any help greatly appreciated.
find control button:
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click</p>
<pre><code> Dim numbchildren As Integer = CInt(Howmanychildren.Text)
For i As Integer = 1 To numbchildren - 1
Dim textbox As TextBox = TryCast(Me.Wizard1.FindControl("WizardStep5").FindControl("Minor_1_Child_Name"), TextBox)
'Dim textbox2 As TextBox = TryCast(Me.Wizard1.FindControl("WizardStep5").FindControl("Howmanychildren"), TextBox)
If textbox IsNot Nothing Then
Response.Write("Found TextBox1 <br>")
Dim val As String = textbox.Text
Response.Write(val & "<br>")
Else
Response.Write("not found" & "<br>")
End If
' Insert into DB
'SaveValueToDatabase(val)
Next
End Sub
</code></pre>
<p>user control added function on dropdown :</p>
<p>Protected Sub Doyouhavechildren_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles Doyouhavechildren.SelectedIndexChanged</p>
<pre><code> Dim numbchildren As Integer = CInt(Howmanychildren.Text)
Dim cnt As Integer = 1
'Panel1.Controls.Clear()
Select Case Doyouhavechildren.SelectedIndex
Case 0
ViewState.Add("Doyouhavechildren", numbchildren)
Do While cnt <= numbchildren
Dim uc As Web.UI.UserControl = DirectCast(Page.LoadControl("MinorChild.ascx"), Web.UI.UserControl)
uc.ID = "Minor_" + cnt.ToString()
Wizard1.ActiveStep.Controls.Add(uc)
cnt = cnt + 1
Loop
Exit Select
Case 1
Exit Select
End Select
End Sub
</code></pre>
<p>user control:</p>
<p><%@ Control Language="VB" AutoEventWireup="false" CodeFile="MinorChild.ascx.vb" Inherits="MinorChild" %>
</p>
<p>
Name
</p>
<p>
Age
</p>
<p>
SS#
</p>
<p>
DOB
</p>
<p></p>
<p></p>
<p>the find control works in the howmanychildren field that is static</p>
http://stackoverflow.com/questions/1288590/problem-finding-web-control-inside-of-gridview-templatefield0Problem finding web control inside of Gridview TemplateFieldBrian Lewis2009-08-17T15:26:58Z2009-08-19T07:43:30Z
<p>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 then performing the appropriate task (update/delete), but I had problems with the event firing twice, so I switched it out for separate events (RowUpdating, RowDeleting). After doing this, FindControl is returning null every time. Just FYI, the gridview is inside of an UpdatePanel that has an AsyncPostBackTriggers for RowEditing, RowUpdating and RowDeleting events.</p>
<p>Here's my TemplateField inside of the GridView:</p>
<pre><code><asp:TemplateField HeaderText="Type">
<ItemTemplate>
<asp:Label
ID="lblMedTypeEdit"
Text='<%# Bind("medDesc") %>'
runat="server">
</asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList
ID="ddlMedTypeEdit"
DataSourceID="srcMedTypes"
SelectedValue='<%# Bind("medtype") %>'
runat="server"
DataTextField="medDesc"
DataValueField="medCode">
</asp:DropDownList>
</EditItemTemplate>
</asp:TemplateField>
</code></pre>
<p>Here is the code I'm using inside of </p>
<pre><code>Protected Sub gvCurrentMeds_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Handles gvCurrentMeds.RowUpdating
Dim intRowIndex As Integer = e.RowIndex
Dim ddlMedType As DropDownList = CType(Me.gvCurrentMeds.Rows(intRowIndex).Cells(1).FindControl("ddlMedTypeEdit"),DropDownList)
End Sub
</code></pre>
<p>I also tried using a recursive function to find the control (below), but it is still returning back null. </p>
<pre><code>Public Function FindControlRecursive(ByVal root As Control, ByVal id As String) As Control
If root.ID = id Then
Return root
End If
For Each c As Control In root.Controls
Dim t As Control = FindControlRecursive(c, id)
If Not t Is Nothing Then
Return t
End If
Next
Return Nothing
End Function
</code></pre>
http://stackoverflow.com/questions/1172119/error-while-using-subsonic-scaffold-multiple-controls-with-the-same-id-were0Error while using subsonic scaffold = "Multiple controls with the same ID .. were found. FindControl requires that controls have unique IDs. "joe2009-07-23T14:23:56Z2009-07-23T14:23:56Z
<p>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 much for your help in advance.</p>
<p>The error:
Multiple controls with the same ID 'AvailableHostname' were found. FindControl requires that controls have unique IDs.</p>
<p>[HttpException (0x80004005): Multiple controls with the same ID 'AvailableHostname' were found. FindControl requires that controls have unique IDs.]
System.Web.UI.Control.FillNamedControlsTable(Control namingContainer, ControlCollection controls) +220
System.Web.UI.Control.FillNamedControlsTable(Control namingContainer, ControlCollection controls) +280
System.Web.UI.Control.FillNamedControlsTable(Control namingContainer, ControlCollection controls) +280
System.Web.UI.Control.FillNamedControlsTable(Control namingContainer, ControlCollection controls) +280
System.Web.UI.Control.FillNamedControlsTable(Control namingContainer, ControlCollection controls) +280
System.Web.UI.Control.FillNamedControlsTable(Control namingContainer, ControlCollection controls) +280
System.Web.UI.Control.EnsureNamedControlsTable() +57
System.Web.UI.Control.FindControl(String id, Int32 pathOffset) +106
System.Web.UI.Control.FindControl(String id) +9
SubSonic.Scaffold.BindEditor(Table tableSchema, String keyId) in C:\Program Files\SubSonic\SubSonic 2.1 Final\src\SubSonic\Controls\Scaffold.cs:1172
SubSonic.Scaffold.CreateChildControls() in C:\Program Files\SubSonic\SubSonic 2.1 Final\src\SubSonic\Controls\Scaffold.cs:713
SubSonic.Scaffold.grid_RowEditing(Object sender, GridViewEditEventArgs e) in C:\Program Files\SubSonic\SubSonic 2.1 Final\src\SubSonic\Controls\Scaffold.cs:1626
System.Web.UI.WebControls.GridView.OnRowEditing(GridViewEditEventArgs e) +133
System.Web.UI.WebControls.GridView.HandleEdit(Int32 rowIndex) +40
System.Web.UI.WebControls.GridView.HandleEvent(EventArgs e, Boolean causesValidation, String validationGroup) +673
System.Web.UI.WebControls.GridView.RaisePostBackEvent(String eventArgument) +199
System.Web.UI.WebControls.GridView.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +11
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +177
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1746</p>
http://stackoverflow.com/questions/1039172/problem-finding-a-control-within-a-formview-from-code-behind1Problem finding a control within a FormView from code-behindMatt2009-06-24T15:39:30Z2009-07-18T09:07:47Z
<p>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)</p>
<pre><code>Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim DDRoleGroups As DropDownList
DDRoleGroups = FormView1.FindControl("DDRoleGroup")
End Sub
</code></pre>
<p>Here's the FormView: <em>(I took out most of the fields so it's easier to read)</em></p>
<pre><code><asp:FormView ID="FormView1" runat="server" DataKeyNames="ID"
DataSourceID="ObjectDataSource_Vendors"
DefaultMode="Insert" BorderColor="DarkGray"
BorderStyle="Solid" BorderWidth="1px" CellPadding="4" Visible="False">
<EditItemTemplate>
</EditItemTemplate>
<InsertItemTemplate>
<label class="form_label">Role Group:</label><br /><asp:DropDownList ID="DDRoleGroup"
runat="server" Width="175px"
EnableViewState="False">
</asp:DropDownList>
</InsertItemTemplate>
</asp:FormView>
</code></pre>
<p>Could it possibly have to do with the fact that it's in the Page_Load sub and the control hasn't acctually loaded yet?</p>
<p>Thanks,<br/>
Matt</p>
http://stackoverflow.com/questions/1084556/cant-find-control-in-edit-mode-in-datalist0Can't find control in edit mode in DataListRob2009-07-05T18:14:20Z2009-07-07T18:36:30Z
<pre><code> private void BindDataList()
{
int userId = Convert.ToInt32(ProfileInfo.GetUserID());
DataList1.DataSource = CatalogAccess.GetAddressByUserID(userId);
DataList1.DataBind();
foreach (DataListItem item in DataList1.Items)
{
Label lbl = (Label)item.FindControl("lbl");
lbl.Text = "myLabel";
}
}
protected void DataList1_EditCommand(object source, DataListCommandEventArgs e)
{
int userId = Convert.ToInt32(ProfileInfo.GetUserID());
DataList1.EditItemIndex = e.Item.ItemIndex;
DataList1.DataSource = CatalogAccess.GetAddressByUserID(userId);
DataList1.DataBind();
Label lbl = (Label)e.Item.FindControl("lbl") as Label;
lbl.Text = "edit mode";
}
<asp:DataList ID="DataList1" runat="server" oneditcommand="DataList1_EditCommand" >
<ItemTemplate>
<asp:Label ID="lblAddressID" runat="server" Text='<%# Bind("addressID") %>'/>
<asp:Label ID="lbl" runat="server" />
<asp:Button runat="Server" ID="cmdEdit" CommandName="Edit" Text="Edit"/>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="txtAddressID" runat="server" Text='<%# Bind("addressID") %>' BackColor="#FFFF66" />
<asp:Label ID="lbl" runat="server"/>
<asp:Button runat="Server" ID="cmdUpdate" CommandName="Update" Text="Update" />
<asp:Button runat="Server" ID="cmdCancel" CommandName="Cancel" Text="Cancel"/>
</EditItemTemplate>
</asp:DataList>
</code></pre>
http://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pages1[ASP.NET] Access a content control in C# when using Master Pagesggervais2009-06-29T20:44:51Z2009-06-30T02:54:38Z
<p>Good day everyone,</p>
<p>I am building a page in ASP.NET, and using Master Pages in the process.</p>
<p>I have a Content Place Holder name "cphBody" in my Master Page, which will contain the body of each Page for which that Master Page is the Master Page.</p>
<p>In the ASP.NET Web page, I have a Content tag (referencing "cphBody") which also contains some controls (buttons, Infragistics controls, etc.), and I want to access these controls in the CodeBehind file. However, I can't do that directly (this.myControl ...), since they are nested in the Content tag.</p>
<p>I found a workaround with the FindControl method.</p>
<pre><code>ContentPlaceHolder contentPlaceHolder = (ContentPlaceHolder) Master.FindControl("cphBody");
ControlType myControl = (ControlType) contentPlaceHolder.FindControl("ControlName");
</code></pre>
<p>That works just fine. However, I am suspecting that it's not a very good design. Do you guys know a more elegant way to do so?</p>
<p>Thank you!</p>
<p>Guillaume Gervais. </p>
http://stackoverflow.com/questions/980120/finding-control-within-wpf-itemscontrol0Finding control within WPF itemscontroldeepak2009-06-11T09:15:51Z2009-06-25T10:45:36Z
<p>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 each of the text boxes for which i want to find each textbox seperatly using some id.</p>
<p>Can anybody help on how to find a control witin the itemscontrol in WPF.</p>
http://stackoverflow.com/questions/1022926/e-item-findcontrol-throws-object-reference-not-set-to-an-instance-of-an-object1e.Item.FindControl throws Object reference not set to an instance of an object.Juri Bogdanov2009-06-21T01:05:48Z2009-06-21T01:19:20Z
<p>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 "txtAdministrators.Text" tries to set value - exception is thrown. Please help with ideas. </p>
<pre><code><asp:Repeater ID="repeatAdministrators" OnItemDataBound="repeatAdministrators_ItemDataBound" runat="server">
<HeaderTemplate>
<tr>
<td class="formLabel">
Administrators:
</td>
<td class="formInputText">
</HeaderTemplate>
<ItemTemplate>
<asp:TextBox ID="txtAdministrators" runat="server" MaxLength="50" Enabled="False"></asp:TextBox><br />
</ItemTemplate>
<FooterTemplate>
</td> </tr>
<tr>
</FooterTemplate>
</asp:Repeater>
</code></pre>
<p>And here is code behind.</p>
<pre><code> protected void btnPing_Click(object sender, EventArgs e)
{
//...
repeatAdministrators.DataSource = Computer.Administrators;
repeatAdministrators.DataBind();
}
protected void repeatAdministrators_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
TextBox txtAdministrators = e.Item.FindControl("txtAdministrators") as TextBox;
StringEnumerator AdminsEnumerator = Computer.Administrators.GetEnumerator();
while (AdminsEnumerator.MoveNext())
{
txtAdministrators.Text = AdminsEnumerator.Current;
}
}
</code></pre>
http://stackoverflow.com/questions/839794/finding-a-control-in-a-page-from-a-page-base-class0Finding a Control in a page from a page base classEv2009-05-08T13:28:14Z2009-05-08T13:36:42Z
<p>Hi Everyone.</p>
<p>Hope you're having a good Friday and stuff... okay, so here's my question:</p>
<p>All my ASPX pages inherit from a base class called BasePage. BasePage inherits from: </p>
<pre><code>System.Web.UI.Page
</code></pre>
<p>Now, how do I access/set a control in my aspx page from my page base? I've tried this:</p>
<pre><code>HyperLink hypMainMenu = (HyperLink)Page.FindControl("hypMainMenu");
hypMainMenu.NavigateUrl = AppConfiguration.AppSettings.Urls.MainMenu;
</code></pre>
<p>But hypMainMenu is always null - I can't find the bastard. Any ideas? Or is this bad practice and someone can reccommend a better way to do this?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/799655/asp-net-findcontrol-is-not-working-how-come1ASP.Net FindControl is not working - How come?Tony2009-04-28T20:21:20Z2009-04-28T20:56:22Z
<p>I have used <code>FindControl</code> 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 checkbox, but FindControl does not find it. When I view the HTML it was assigned <code>ctl00_bodyPlaceHolder_ctl02_cbSelect</code>.</p>
<p>I have not found one example of FindControl that mentions that. In fact everyone seems to just use find control like normal.</p>
<p>So, am I doing something wrong? Did .Net change? Can anyone shed some light onto this for me, it is really frustrating!</p>
http://stackoverflow.com/questions/751614/index-out-of-range-error-when-using-row-findcontrol-inside-a-asp-net-gridview-row0Index out of range error when using row.FindControl inside a Asp.net Gridview rowcommand event with Paging Enabledtheminesgreg2009-04-15T13:09:27Z2009-04-15T13:38:21Z
<p>The following code works great on Page 1 of data inside an Asp.net Gridview control:</p>
<pre><code> If e.CommandName = "Void" Then
'Read the status of the ticket currently
Dim RowIndex As Integer = CInt(e.CommandArgument)
Dim row As GridViewRow = grdTradeTickets.Rows(RowIndex)
Dim lblTransactionID As Label = DirectCast(row.FindControl("lblTransactionID"), Label)
Dim lblTtStatus As Label = DirectCast(row.FindControl("lblTtStatus"), Label)
Dim lblTradeTicketID As Label = DirectCast(row.FindControl("lblTradeTicketID"), Label)
'If already void, show "Already Void" message to user. Else continue "Are you sure you want to void this Trade Ticket?"
If lblTtStatus.Text = "Void" Then
mdlPopupAlready.show()
Else
mdlPopup.Show()
lblTradeTicketIdToVoid.Text = lblTradeTicketID.Text
End If
End If
</code></pre>
<p>However if the user clicks the "Void" button on any later page, the following error is thrown:</p>
<p>"Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index"</p>
<p>It's not like the Index is null or something. It has a value. Thoughts?</p>
http://stackoverflow.com/questions/615950/how-do-i-access-a-control-in-the-headertemplate-of-my-gridview0How do I access a control in the HeaderTemplate of my GridViewminty2009-03-05T18:24:43Z2009-03-13T18:54:58Z
<p>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:</p>
<pre><code><asp:TemplateField SortExpression="EXCEPTION_TYPE">
<HeaderTemplate>
<asp:Label ID="TypeId" runat="server" Text="Type" ></asp:Label>
<asp:DropDownList ID="TypeFilter" runat="server" AutoPostBack="true">
</asp:DropDownList>
</HeaderTemplate>
...
</asp:TemplateField>
</code></pre>
<p>And here is the section in the code behind where I am trying to access the control 'TypeFilter'.</p>
<pre><code>protected void ObjectDataSource1_Selected(object sender,
ObjectDataSourceStatusEventArgs e)
{
DataTable dt = (DataTable)e.ReturnValue;
int NumberOfRows = dt.Rows.Count;
TotalCount.Text = NumberOfRows.ToString();
DataView dv = new DataView(dt);
DataTable types = dv.ToTable(true, new string[] { "EXCEPTION_TYPE" });
DropDownList typeFilter = (DropDownList)GridView1.FindControl("TypeFilter");
typeFilter.DataSource = types;
typeFilter.DataBind();
}
</code></pre>
<p>You will notice that I am trying to use FindControl to get a reference to the DropDownList Control. This call returns null instead of returning the control. How do I get access to the control?</p>
http://stackoverflow.com/questions/123776/parent-findcontrol-not-working1Parent.FindControl() not working?jmein2008-09-23T20:49:15Z2008-12-31T01:15:37Z
<p>I have a page that has an iframe</p>
<p>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</p>
<p>I tried using Parent.FindControl but it does not seem to be working. I am positive I have the right id in the findcontrol because I used Firebug to inspect the panel and I copied the id from there</p>
<p>Does anyone know what I am missing?</p>
http://stackoverflow.com/questions/365422/saving-gridviewrow-data-before-changing-it-client-side0Saving GridViewRow data before changing it (Client Side)Angel Escobedo2008-12-13T16:52:13Z2008-12-13T16:52:13Z
<p>Im working with C# 3.0, GridViews, so my idea is the following "Save actual data from gridviewA in some local var, then perform changes in real context and finally bind them all again in the same GridView": (steps)</p>
<p>1) I Have GridViewA with following columns :</p>
CodeClass
Description
Price
Appointment
4798
Arthro Resonance
$200
16:20
<p><img src="http://i33.tinypic.com/6qgy0h.jpg" alt="alt text" /></p>
<p><br></p>
<p>2) From GridViewB i Obtain certain data to modify the actual GridViewA row:</p>
<pre><code> string newAppointment = ((Label)selectedRow.Cells[0].FindControl("lblHorario")).Text;
int newCodeAppointment = Convert.ToInt32(((Label)selectedRow.Cells[0].FindControl("lblCodigoHorario")).Text);
int newCodeEquipment = Convert.ToInt32(((Label)selectedRow.Cells[0].FindControl("lblCodigoEquipo")).Text);
</code></pre>
<p>3) I verify that some row is checked at least in GridViewA, (if is checked that row have to be modified with the new vars)</p>
<pre><code> rowCount = GridViewA.Rows.Count;
if (e.CommandName == "AddtoSelected")
{
for (int i = 0; i <= (rowCount - 1); i++)
{
chkEstudio = GridViewA.Rows[i].FindControl("ChkAssign") as CheckBox;
if (chkEstudio.Checked)
{
//DetalleCita is a Class with attributes to bind GridViewA
List<DetalleCita> lstAux = new List<DetalleCita>();
foreach (GridViewRow row in this.GridViewA.Rows)
{
lstAux.Add(new DetalleCita
{
horacita = dt
});
}
GridViewA.DataSource = lstAux;
GridViewA.DataBind();
}
}
}
else
{
//ToDo:
//Delete Row
}
GridViewA.DataBind();
}
</code></pre>
<p>With the pasted code i modified but all rows, i want to modify just the selected row, so my main idea is to keep all rows before modify and then add one by one, whats your opinion?, please feedback , Thanks!</p>