0
votes
1answer
27 views
how to add controls to the masterpage’s content placeholder programmatically
On the base.master:
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Base.master.cs" Inherits="WebApplicationControlTest.Base" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 …
0
votes
1answer
9 views
DataGrid finding a control
HI
I have a DataGrid (yes would be nicer if it was a gridview but nothing i can do about that)
in the itemDataBound event i am adding a hidden field into the first cell of each row
I am setting its …
0
votes
3answers
73 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
28 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 …
2
votes
2answers
53 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
63 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
29 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
268 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
309 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
72 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
370 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
236 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 …
0
votes
1answer
665 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
0answers
65 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 much for your help in …
0
votes
1answer
456 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();
…
