active questions tagged usercontrols - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T06:38:37Zhttp://stackoverflow.com/feeds/tag/usercontrolshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1933859/asp-net-gridview-enabling-disabling-buttons-after-paging0ASP.NET GridView, enabling/disabling buttons after pagingblahblah2009-12-19T19:10:21Z2009-12-20T06:26:57Z
<p>I have successfully implemented my GridView now, but, as always, the whole ASP.NET life cycle thing is bothering me. I can't figure out why this doesn't work. I have bound the GridView's OnPageIndexChanged as such:</p>
<pre><code>protected void GridView_PageIndexChanged(object sender, EventArgs e)
{
// Enable/disable the previous/next buttons.
LinkButton btnNextPage = (LinkButton)gvTable.BottomPagerRow.FindControl("btnNextPage");
LinkButton btnPreviousPage = (LinkButton)gvTable.BottomPagerRow.FindControl("btnPreviousPage");
btnNextPage.Enabled = false;
btnPreviousPage.Enabled = false;
}
</code></pre>
<p>This is my ASCX:</p>
<pre><code><asp:GridView ID="gvTable" runat="server" ShowHeader="true" PageSize="1"
AllowPaging="true" AllowSorting="true" DataSourceID="dsLinqActivities"
AutoGenerateColumns="false" OnRowDataBound="GridView_DataBound"
OnPageIndexChanged="GridView_PageIndexChanged">
<Columns>
<asp:BoundField DataField="Edited" HeaderText="Date" />
<asp:BoundField DataField="Status" HeaderText="Status" />
<asp:BoundField DataField="Activity" />
</Columns>
<PagerSettings Position="Bottom" Visible="true" />
<PagerStyle CssClass="pager" />
<PagerTemplate>
<asp:LinkButton ID="btnPreviousPage" class="navbtn prev left"
runat="server" CommandName="Page" CommandArgument="Prev">
<span>Newer activities</span></asp:LinkButton>
<asp:LinkButton ID="btnNextPage" class="navbtn next right"
runat="server" CommandName="Page" CommandArgument="Next">
<span>Older activities</span></asp:LinkButton>
</PagerTemplate>
</asp:GridView>
</code></pre>
<p>I debug my application and see that the code is being run and does the right thing but for some reason when the control is rendered, both of the buttons are always enabled. What am I doing wrong here?</p>
http://stackoverflow.com/questions/1207173/how-to-get-width-of-button-in-datetimepicker-control-controls-in-general0How to get width of button in DateTimePicker-Control/Controls in general?Inno2009-07-30T14:58:45Z2009-12-18T23:00:01Z
<p>Hello everybody,</p>
<p>I implemented a custom DateTimePicker. On the DateTimePicker there is a button. In the examples I've found it's width is set to 16. This is working but I would like to have a dynamic approach.</p>
<p>So, is there a way to get the size of this button or is there a general way to get information about .Net-Control sub elements like size etc.?</p>
<p>Trying DateTimePicker.Controls didn't help me (it's empty).</p>
http://stackoverflow.com/questions/1929078/asp-net-dynamically-switching-usercontrol-how0Asp.Net: Dynamically switching UserControl - How?Melt2009-12-18T16:03:48Z2009-12-18T16:14:40Z
<p>Hi all,</p>
<p>In Asp.Net is it possible to dynamically switch which user control gets loaded with the .aspx page.</p>
<p>Depending on the type of news story I would like to switch which control gets loaded.</p>
<p>Thanks
melt</p>
http://stackoverflow.com/questions/1927198/asp-net-problem-setting-property-value-in-usercontrol0Asp.Net: Problem setting property value in UserControlMelt2009-12-18T09:27:30Z2009-12-18T11:45:41Z
<p>Hi all,</p>
<p>I have a UserControl called 'Inspirations' with the following public property</p>
<pre><code>private int pagenumber;
public int PageNumber
{
get { return pagenumber; }
set { pagenumber = value; }
}
</code></pre>
<p>On my aspx page I set the value of the property like so:</p>
<pre><code>Inspirations.PageNumber = (int)Convert.ToInt32(this.txtNum.Text);
</code></pre>
<p>On my aspx page I write back the value to check its been set:</p>
<pre><code>Response.Write(Inspirations.PageNumber.ToString());
</code></pre>
<p>...and it has on my aspx page.</p>
<p>However, I have a button on my UserControl to test the value of PageNumber and when I click that it always comes back as zero.</p>
<pre><code>protected void btnAddCompany_Click(object sender, EventArgs e)
{
Response.Write(PageNumber.ToString());
}
</code></pre>
<p>...the property value doesn't seem to have been passed back to my control.</p>
<p>Can anyone tell me what I'm doing wrong, please.</p>
<p>Regards
Melt</p>
http://stackoverflow.com/questions/1927617/scroll-event-of-datagridview-and-usercontrol0Scroll event of DataGridView and UserControl.gauravghodnadikar2009-12-18T11:18:19Z2009-12-18T11:18:19Z
<p>I have added User control in 1st column of every row in DataGridView. But I am unable to move them when user scroll DataGridView vertically or horizontally
below i have wrote code used to draw UserControl </p>
<p>UserControl : UCEventList DataGridView : dgvMapper
Problem :
Coz in dgvMapper.Scroll event GetCellDisplayRectangle(...) function is returning
rect.x= 0 , rect.y= 0 so it always shows control on Left Top. </p>
<pre><code> foreach (MIDCBase objMIDCbase in pDomainElements)
{
RecordList objRecordList = objMIDCbase as RecordList;
dgvMapper.Rows[intCnt].Height = 160;
UCEventList innerUCEventList = new UCEventList();
ucListEvents.Add(innerUCEventList);
Rectangle rect = this.dgvMapper.GetCellDisplayRectangle(1, intCnt, false);
rect.Size = new Size(105, 155);
innerUCEventList.Location = rect.Location;
innerUCEventList.Size = rect.Size;
innerUCEventList.renderControl();
innerUCEventList.Visible = true;
}
</code></pre>
http://stackoverflow.com/questions/1927400/design-time-moving-of-a-child-control-owned-by-a-composite-user-control0Design-time moving of a child control owned by a composite user controlRytmis2009-12-18T10:21:25Z2009-12-18T10:53:03Z
<p>Hi,</p>
<p>I have a Windows Forms user control, which (for various reasons irrelevant to this issue) are exposed in the designer, much like the panels in a split panel. Most everything works nicely, except for dragging the control. The child controls are created by the user control, and it does not accept new children. The intent is only to allow the properties of the predefined children to be edited.</p>
<p>Since the control allows the child controls to be designed, they can also be selected in the designer (this is a good thing, and I don't want to change this). However, they can not and should not be moved individually.</p>
<p>What I would like to happen is that when a child control is dragged in the designer, the drag actually moves the parent.</p>
<p>I've been skimming the documentation on control designers, but nothing popped up that would be simple or obvious.</p>
http://stackoverflow.com/questions/1923455/add-user-control-in-visual-c-2008-express0Add user control in Visual C++ 2008 ExpressJustin2009-12-17T17:50:35Z2009-12-17T17:52:45Z
<p>I can't seem to add a user control from an existing solution I've created in visual C++ 2008 Express. I don't see the option located anywhere. Perhaps I'm looking in the wrong area or it's just not available in the express edition. I've followed the advice described here: <a href="http://msdn.microsoft.com/en-us/library/114xc3e5%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/114xc3e5%28VS.80%29.aspx</a></p>
<p>The steps listed in the link above are as follows:<br>
1. On the File menu, click New Project.<br>
2. On the Templates pane, in the New Project dialog box, click Class Library and then click OK.<br>
3. On the Project menu, click Add User Control. </p>
<p>Step 3 is where I get stuck. There is no 'Add User Control'. Additionally, even if the prior link was for visual basic, the same procedure (I would have thought) still applies. When I tried performing the above steps in Visual C# 2008 Express everything seemed to work as expected.</p>
<p>Thanks for any help at all!</p>
http://stackoverflow.com/questions/1916617/maximum-number-of-entries-in-a-listbox1Maximum number of entries in a ListBoxUpper Stage2009-12-16T18:20:07Z2009-12-17T15:52:55Z
<p>What is the maximum number of entries a simple ListBox (ComboBox) should contain? There are fifty states in the US - is 50 too many? There are over 270 countries and territories in the world - is 270 too many? </p>
<p>When should a ListBox include search or type-ahead capabilities? When should the designer consider something other than a ListBox?</p>
<p>Do you have any links to cool widgets that help a user select from one of many options?</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1437258/pass-a-value-and-reload-user-control-from-javascript2Pass a value and reload User Control from Javascriptbalexandre2009-09-17T07:35:12Z2009-12-17T14:37:57Z
<p>Hi guys,</p>
<p>I have a User control (because I use the same in other page, so I thought I should reuse code and not double my work), but in this page I show a list of companies and each one has a <strong>company number</strong>, I need to pass this company number to that User Control and it has to reload using that passed company number.</p>
<p>How can I accomplish this?</p>
<p>what I have so far:</p>
<p><img src="http://www.balexandre.com/temp/2009-09-17%5F0917.png" alt="alt text" /></p>
<p>the <strong>Show company structure</strong> link is made of</p>
<pre><code><a href="javascript:showStruct('112:201334607','5564967221');"
class="showStructLink">Show company structure</a>
</code></pre>
<p>the <strong>showStruct</strong> method is written like</p>
<pre><code> function showStruct(pid, cnr) {
if (_showStrut == 0)
return;
// fancy stuff to be more apealing visually
$("#tdSearch").removeClass("tabTitleUp01").addClass("tabTitleDownUp01");
$("#tdStruct").removeClass("tabTitleDownUp02").addClass("tabTitleUp02");
$("#srtr1").hide();
$("#srtr2").hide();
$("#sttr1").show();
// enable Search Results tab to be clicked in order to get back
$("#tdSearch")
.addClass("pointer")
.bind("click", function() { hideStructure(); });
// pass the company number and reload wcCompanyStruture web user control
// __doPostBack('RefreshWebUserControl', cnr);
}
</code></pre>
<p>I can make a simple aspx page with the control inside and from jQuery invoke $.get() to run and populate the control correctly, but I really want to learn how to do this properly, using the ASP.NET AJAX Method to send a number and call RefreshData on it</p>
<p>using code-behind it is easy to refresh the user control, just invoking</p>
<pre><code>wcCompanyStruture.RefreshData("companyNumberHere");
</code></pre>
<p>what do I need to do in my User Control side and well in the showStruct method to create this behavior?</p>
<p>All help is appreciated, Thank you.</p>
http://stackoverflow.com/questions/1920992/c-exclude-complete-form-usercontrol-by-using-compiler-constants1C# exclude complete form / usercontrol by using compiler constantsSimon Ottenhaus2009-12-17T11:03:10Z2009-12-17T11:21:29Z
<p>I'd like to exclude / include a complete form in my project. But when I add the needed <code>#if CONST</code> and <code>#endif</code> the compiler complains about resources that may get wrong names.</p>
<blockquote>
<p>warning MSB3042: A namespace or class definition was found within a conditional compilation directive in the file "Form1.cs". This may lead to an incorrect choice for the manifest resource name for resource "Form1.resx".</p>
</blockquote>
<p>What does this mean?</p>
<p>And how do I fix it?</p>
http://stackoverflow.com/questions/1920889/asp-net-passing-value-from-page-to-usercontrol1Asp.Net: Passing value from Page to UserControlMelt2009-12-17T10:46:11Z2009-12-17T10:57:36Z
<p>Hi all,</p>
<p>I have a textbox on my aspx page and I need a usercontrol to be able to see or access that value, how would I do that please.</p>
<p>I created a public property on my aspx page</p>
<p>public string txtBoolValue
{
get { return this.txtBool.Text;}
}</p>
<p>How do I call that from my ascx page?</p>
<p>Thanks</p>
<p>Melt</p>
http://stackoverflow.com/questions/1919993/how-to-add-more-than-one-control-to-a-custom-controls-placeholder0How to add more than one control to a custom control's placeholder?Jronny2009-12-17T07:14:52Z2009-12-17T07:14:52Z
<p>we have created a container custom control and this is how they were called in OnPreInit:</p>
<pre><code>private void RenderModules() {
List<Modules> modules = GetModulesList();
foreach(var item in modules){
Control control = Page.Load(item.URI);
if(item.HasChildren){
RenderChildrenModules(item.children, ref control);
}
mainplaceholder.Controls.Add(control);
}
}
private void RenderChildrenModules(List<Modules> children, ref Control parent) {
foreach(var item in children){
Control control = Page.Load(item.URI);
if(item.HasChildren){
RenderChildrenModules(item.children, ref control);
}
parent.Controls.Add(control);
}
}
</code></pre>
<p>Now, the problem is that we can add controls to the custom control referenced through the dll. We can also add child controls, but only one of the child controls per control is added. I have debugged it, and the parent.Control's collection of controls is complete, but when rendered on the browser, only one is shown...</p>
<p>What has happened here, and how could we fix this?</p>
<p>thank you very much!</p>
http://stackoverflow.com/questions/1016237/scriptmanager-in-masterpage-and-updatepanel-in-usercontrol-partial-postback-not0scriptmanager in masterpage and updatepanel in usercontrol. Partial postback not happening2009-06-19T03:33:37Z2009-12-16T17:44:24Z
<p>hi, i have a master page with following scriptmanager tag:</p>
<pre><code><asp:ScriptManager ID="scriptManger" EnablePartialRendering="true" runat="server" >
<Scripts>
<asp:ScriptReference Path="~/common/js/jquery-1.3.2.js" />
<asp:ScriptReference Path="~/common/js/validation.js" />
</Scripts>
</asp:ScriptManager>
</code></pre>
<p>My aspx page is :</p>
<pre><code> <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/common/MasterPages/Login.master" CodeBehind="SecurityQuestionsEnroll.aspx.cs" Inherits="Login.SecurityQuestionsEnroll" %>
<%@ Register src="~/controls/Views/Login/SecurityQuestions.ascx" tagname="SecurityQuestions" tagprefix="uc1" %>
</code></pre>
<p>and this is the user control:</p>
<pre><code> <asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="true" UpdateMode="always" >
<ContentTemplate>
<asp:DataList ID="dlSecurityQuestions" runat="server" AutoPostBack="true" OnSelectedIndexChanged ="dlSecurityQuestions_SelectedIndexChanged">
<ItemTemplate>
<div>
<asp:Label ID="lbl_question" AssociatedControlID="lst_question" runat="server"><%# DataBinder.Eval(Container.DataItem, "QuestionName")%></asp:Label>
<asp:DropDownList ID="lst_question" runat="server" AutoPostBack="true" >
<asp:ListItem Value="0">Select a Question...</asp:ListItem>
<asp:ListItem Value="1">Select a Question1..</asp:ListItem>
</asp:DropDownList>
</div>
<div>
<asp:Label ID="lbl_answer1" AssociatedControlID="txt_answer" runat="server">Answer *</asp:Label>
<asp:TextBox ID="txt_answer" runat="server" />
<div id="validate"></div>
</div>
</ItemTemplate>
</asp:DataList>
</ContentTemplate>
</asp:UpdatePanel>
</code></pre>
<p>I have tried most of the options which google recommends, but i am not able to do a partial postback. evry time selectedindex is changed it does a full page postback. the drop down as you can see is in a itemtemplate and is repeated.
what do you think I am doing wrong that its not firing postback of just the update panel. </p>
http://stackoverflow.com/questions/1908195/replace-a-string-with-a-user-control0Replace a string with a user controlNeil2009-12-15T15:28:28Z2009-12-16T12:05:23Z
<p>How can I replace a string with UserControl? </p>
<p>if string = [$control1$]</p>
<p>replace with control1.ascx</p>
http://stackoverflow.com/questions/1912192/how-to-load-usercontrols-from-the-assembly-using-the-filename2how to load usercontrols from the assembly using the filename?Jronny2009-12-16T04:03:12Z2009-12-16T08:02:40Z
<p>we have a set of usercontrols complied to a dll. we could just load the controls using their classnames by like <code>ASP.theusercontrol_ascx blah = new ASP.theusercontrol_ascx();</code></p>
<p>but if we have dynamic data and load the controls based on the filename (or the control name),
how can we load them like <code>Page.LoadControl("TheURL/theusercontrol.ascx")</code>?</p>
<p>Thanks a lot...</p>
http://stackoverflow.com/questions/1912283/asp-net-user-control-inner-content0ASP.NET User Control inner contentAlexDemers2009-12-16T04:25:13Z2009-12-16T04:42:05Z
<p>Hey,</p>
<p>I have a user control which accepts a title attribute. I would also like that input inner HTML (ASP Controls also) inside of that user control tag like so:</p>
<pre><code><uc:customPanel title="My panel">
<h1>Here we can add whatever HTML or ASP controls we would like.</h1>
<asp:TextBox></asp:TextBox>
</uc:customPanel>
</code></pre>
<p>How can I achieve this? I have the title attribute working correctly.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1910084/start-and-end-divs-using-two-controls-aps-net-mvc0Start and End Divs Using Two Controls - Aps.net mvcGlenn2009-12-15T20:14:52Z2009-12-15T20:19:26Z
<p>In an Asp.net MVC application I'd like to encapsulate the ugly wrapper code (just a literal html opening string and another closing string) we use to make corners and shadows compatible with older browsers (we don't use javascript for performance reasons) in a manner compatible with the visual studio design view. </p>
<p>I'd like to put the wrapper divs in a control so that I can use them in a .aspx view page and not have to look at all the mess required to make fancy corners & shadows but still get the benefit of seeing the results in the designer.</p>
<p> //open wrapper literal
actual content
//close wrapper literal</p>
<p>I couldn't figure out how to inject content inside 1 control and have the results visible in the designer the way master pages do, so I'm testing a system using 2 controls containing the literal html.</p>
<p><strong>example usage - with one control opening and another closing</strong></p>
<pre><code><ShadowBoxStart /> //contains div open tags
Hello World. This is actual content with all the nice style divs wrapped around
<ShadowBoxEnd /> //contains div close tags
</code></pre>
<p>This renders properly in all browsers when I run the application but the designer seems to be confused by the fact that one control opens the divs and another closes them and renders junk. The System.Web.Mvc.ViewUserControls I'm using contain nothing but literal html, and I've replicated the behavior with several different standard style & div configurations so I'm stumped as to what is confusing the designer. </p>
<p>I'd like to keep the solution really simple because this is mainly a convenience setup and not worth a lot of added complexity. Any ideas?</p>
http://stackoverflow.com/questions/915628/how-do-i-expose-the-columns-collection-of-gridview-control-that-is-inside-a-user0How do I expose the columns collection of GridView control that is inside a user controlChristopher Edwards2009-05-27T13:12:19Z2009-12-15T19:58:15Z
<p>See edit.</p>
<p>I want to be able to do this in the aspx that consumes the user control.</p>
<pre><code><uc:MyControl ID="MyGrid" runat="server">
<asp:BoundField DataField="FirstColumn" HeaderText="FirstColumn" />
<asp:BoundField DataField="SecondColumn" HeaderText="SecondColumn" />
</uc>
</code></pre>
<p>I have this code (which doesn't work). Any ideas what I am doing wrong?</p>
<p>VB</p>
<pre><code>Partial Public Class MyControl
Inherits UserControl
<System.Web.UI.IDReferenceProperty(GetType(DataControlFieldCollection))> _
Public Property Columns() As DataControlFieldCollection
Get
Return MyGridView.Columns
End Get
Set(ByVal value As DataControlFieldCollection)
' The Columns collection of the GridView is ReadOnly, so I rebuild it
MyGridView.Columns.Clear()
For Each c As DataControlField In value
MyGridView.Columns.Add(c)
Next
End Set
End Property
...
End Class
</code></pre>
<p>C#</p>
<pre><code>public partial class MyControl : UserControl
{
[System.Web.UI.IDReferenceProperty(typeof(DataControlFieldCollection))]
public DataControlFieldCollection Columns {
get { return MyGridView.Columns; }
set {
MyGridView.Columns.Clear();
foreach (DataControlField c in value) {
MyGridView.Columns.Add(c);
}
}
}
...
}
</code></pre>
<p>EDIT:</p>
<p>Actually it does work, but auto complete does not work between the uc:MyControl opening and closing tags and I get compiler warnings:-</p>
<ul>
<li><p>Content is not allowed between the opening and closing tags for element 'MyControl'.</p></li>
<li><p>Validation (XHTML 1.0 Transitional): Element 'columns' is not supported.</p></li>
<li><p>Element 'BoundField' is not a known element. This can occur if there is a compilation error in the Web site, or the web.config file is missing.</p></li>
</ul>
<p>So I guess I need to use some sort of directive to tell the complier to expect content between the tags.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1907264/asp-net-user-control-with-dependent-attributes0ASP.NET: User control with dependent attributesblahblah2009-12-15T12:55:31Z2009-12-15T13:22:52Z
<p>I'm writing a user control with two attributes, <code>A</code> and <code>B</code>. I want the programmer using this control to be warned when defining a value for attribute <code>A</code> but not for <code>B</code>.</p>
<p>Can I accomplish this somehow?</p>
http://stackoverflow.com/questions/1901254/programatically-add-usercontrol-with-events0Programatically add UserControl with eventsschaermu2009-12-14T14:33:39Z2009-12-15T10:25:00Z
<p>Hi everybody</p>
<p>I need to add multiple user controls to a panel for further editing of the contained data. My user control contains some panels, dropdown lists and input elements, which are populated in the user control's Page_Load event.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
// populate comparer ddl from enum
string[] enumNames = Enum.GetNames(typeof (SearchComparision));
var al = new ArrayList();
for (int i = 0; i < enumNames.Length; i++)
al.Add(new {Value = i, Name = enumNames[i]});
scOperatorSelection.DataValueField = "Value";
scOperatorSelection.DataTextField = "Name";
...
</code></pre>
<p>The data to be displayed is added to the user control as a Field, defined above Page_Load. The signature of the events is the following:</p>
<pre><code>public delegate void ControlStateChanged(object sender, SearchCriteriaEventArgs eventArgs);
public event ControlStateChanged ItemUpdated;
public event ControlStateChanged ItemRemoved;
public event ControlStateChanged ItemAdded;
</code></pre>
<p>The update button on the user control triggers the following method:</p>
<pre><code>protected void UpdateCriteria(object sender, EventArgs e)
{
var searchCritCtl = (SearchCriteria) sender;
var scEArgs = new SearchCriteriaEventArgs
{
TargetCriteria = searchCritCtl.CurrentCriteria.CriteriaId,
SearchComparision = ParseCurrentComparer(searchCritCtl.scOperatorSelection.SelectedValue),
SearchField = searchCritCtl.scFieldSelection.SelectedValue,
SearchValue = searchCritCtl.scFilterValue.Text,
ClickTarget = SearchCriteriaClickTarget.Update
};
if (ItemUpdated != null)
ItemUpdated(this, scEArgs);
}
</code></pre>
<p>The rendering page fetches the data objects from a storage backend and displays it in it's Page_Load event. This is the point where it starts getting tricky: i connect to the custom events!</p>
<pre><code>int idIt = 0;
foreach (var item in _currentSearch.Items)
{
SearchCriteria sc = (SearchCriteria)LoadControl("~/content/controls/SearchCriteria.ascx");
sc.ID = "scDispCtl_" + idIt;
sc.ControlMode = SearchCriteriaMode.Display;
sc.CurrentCriteria = item;
sc.ItemUpdated += CriteriaUpdated;
sc.ItemRemoved += CriteriaRemoved;
pnlDisplayCrit.Controls.Add(sc);
idIt++;
}
</code></pre>
<p>When first rendering the page, everything is displayed fine, i get all my data. When i trigger an update event, the user control event is fired correctly, but all fields and controls of the user control are <strong>NULL</strong>. After a bit of research, i had to come to the conclusion that the event is fired before the controls are initialized...</p>
<p>Is there any way to prevent such behavior / to override the page lifecycle somehow? I cannot initialize the user controls in the page's Init-event, because i have to access the Session-Store (not initialized in Page_Init).</p>
<p>Any advice is welcome...</p>
<p><strong>EDIT:</strong></p>
<p>Since we hold all criteria informations in the storage backend (including the count of criteria) and that store uses the userid from the session, we cannot use Page_Init... just for clarification</p>
<p><strong>EDIT #2:</strong></p>
<p>I managed to get past some of the problems. Since i'm now using simple types, im able to bind all the data declaratively (using a repeater with a simple ItemTemplate). It is bound to the control, they are rendered in correct fashion. On Postback, all the data is rebound to the user control, data is available in the OnDataBinding and OnLoad events, everything looks fine.</p>
<p>But as soon it enters the real event (bound to the button control of the user control), all field values are lost somehow...</p>
<p>Does anybody know, how the page lifecycle continues to process the request after Databinding/Loading ? I'm going crazy about this issue...</p>
http://stackoverflow.com/questions/680519/in-web-config-is-it-possible-to-register-all-user-controls-in-specified-directory1In Web.config Is it possible to register all user controls in specified directorySergej Andrejev2009-03-25T07:14:33Z2009-12-14T20:49:12Z
<p>Currently I'm registering every user control separately in Web.config</p>
<pre><code><pages validateRequest="false">
<controls>
<add tagPrefix="cc1" src="~/Controls/MyUserControl1.ascx" tagName="MyUserControl1"/>
...
<add tagPrefix="cc1" src="~/Controls/MyUserControlN.ascx" tagName="MyUserControlN"/>
</controls>
</pages>
</code></pre>
<p>But from time to time I forget to checkin web.config. Actually, I usually forget that it have changed skip it because it often breaks settings others set to connect to their local db DB copy.</p>
<p>I was wondering is it possible to just specify whole Controls directory and get all controls there registered automatically </p>
http://stackoverflow.com/questions/973942/eventhandler-for-usercontrol-with-button-onclick-event0Eventhandler for UserControl with button onClick eventteebot.be2009-06-10T06:12:41Z2009-12-14T15:00:11Z
<p>Hello, </p>
<p>I've created a user control that contains a button and a few other controls. </p>
<p>When declaring my user control in the html markup I'd like to do some sort of : </p>
<pre><code><asp:CustomControl onclick="CustomControl_Click" ID="cc1" runat="server">
</code></pre>
<p>Where CustomControl_Click is obviously the action I want to call when my control's button is clicked. </p>
<p>So far in my control I have:</p>
<pre><code>public event EventHandler Click;
protected void Button1_Click(object sender, EventArgs e)
{
Click.Invoke(sender, e);
}
</code></pre>
<p>but how can I <em>forward</em> the Eventhandler of the parent page to assign it to the Click Eventhandler in my control?</p>
<p>Any help is <strong>really</strong> appreciated!</p>
<p>PS: maybe there's a way of getting the method from the hosting page using reflexion</p>
http://stackoverflow.com/questions/1103847/how-do-i-add-an-asp-net-control-inside-an-ascx-to-an-external-requiredfieldvalida2How do I add an ASP.NET control inside an ASCX to an external RequiredFieldValidator programmatically?mkelley332009-07-09T13:18:07Z2009-12-14T09:35:38Z
<p>I have a drop-down list inside a user control (ASCX) that I want to validate from the page on which I've placed the ASCX, but when I set the ControlToValidate to the drop-down list the page complains that it can't be found. Thanks for any help/suggestions.</p>
http://stackoverflow.com/questions/1369331/referencing-dataitem-of-parent-repeater-control-inside-a-user-control1Referencing DataItem of parent Repeater control inside a User Controlesulin2009-09-02T18:19:00Z2009-12-12T20:11:40Z
<p>I need to place a user control into the template of a repeater control and reference data items from the repeater's datasource.</p>
<p>I tried (ignore the second cast which is specific to the CMS platform I'm using):</p>
<pre><code><%# ((EPiServer.Core.PageData)((RepeaterItem)Container.Parent.NamingContainer).DataItem)["PageName"]%>
</code></pre>
<p>But that throws back the following error: Unable to cast object of type 'ASP.usercontrols_searchcontrols_searchresult_ascx' to type 'System.Web.UI.WebControls.RepeaterItem'</p>
<p>Searchresult_ascx is another user control that contains the actual repeater.</p>
http://stackoverflow.com/questions/1073185/in-an-asp-control-how-can-i-get-the-text-in-a-contentemplate-tag-in-the-control0In an ASP control how can I get the text in a <Contentemplate> tag in the control code?uince812009-07-02T08:38:18Z2009-12-12T20:00:14Z
<p>Hi,
In my page ASP.net page I'm using a custom control like this:</p>
<pre><code><MyNamespace:MyControl runat="server" ID="myControl">
<contenttemplate>
This is the text I want to use
</contenttemplate>
</MyNamespace:MyControl>
</code></pre>
<p>In the c# code of the control how can I obtain a string containing the text between the <code><contentemplate></code> tag (eg. "This is the text I want to use") ?
Can you give me the code?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1764300/how-to-get-instance-of-net-control-which-is-in-child-page-from-user-control-in-m0how to get instance of .net control which is in child page from user control in master pagePragnesh Patel2009-11-19T15:53:41Z2009-12-12T19:44:09Z
<p>i have user control called shopping cart.
which i have used in master page.
i want to get the textbox value from the child page in to user control.
is it possible to access control from child page in "Custom User Control" which is on master page?</p>
http://stackoverflow.com/questions/1890206/add-one-xaml-based-usercontrol-to-another-on-mouse-event0add one xaml based usercontrol to another on mouse eventKamal2009-12-11T19:05:53Z2009-12-11T21:45:02Z
<p>I have three xaml files + their code behind files in my Silverlight (C#) web project.</p>
<p>One is the MainPage.xaml, which is what gets rendered in the browser.</p>
<p>The other two (lets call them Dot and Box) are custom usercontrols.</p>
<p>When the webpage loads, Dots get added to random locations in a sub-canvas in MainPage xml.</p>
<p>I would like to add a Box to a Dot's location when the user mouses over the Dot. Here is my code behind for Dot:</p>
<pre><code>public partial class Dot : UserControl
</code></pre>
<p>{
public string grbId {get; set;}</p>
<p>public Dot()
{
// Required to initialize variables
InitializeComponent();
}</p>
<pre><code> private void UserControl_MouseEnter(object sender, MouseEventArgs e)
{
//
//HtmlPage.Window.Alert(grbId);
MainPage mp = new MainPage();
Box idWindow = new Box();
idWindow.textBlock.Text = grbId;
// I added the following two lines because I thought it was being
// rendered behind Skymap but that is not the case.
Canvas.SetZIndex(idWindow, 5);
Canvas.SetZIndex(mp.SkyMap, -1);
idWindow.IsEnabled = true;
// Grow is animation storyboard
idWindow.Grow.Begin();
// SkyMap is a canvas inside my LayoutRoot canvas in MainPage.
mp.SkyMap.Children.Add(idWindow);
}
</code></pre>
<p>}</p>
<p>The MouseEnter event fires properly and the HtmlPage alert works just fine. But the Box never gets drawn. I have added the same code to the MainPage OnLoad event and it works fine. Can someone please tell me what I am missing? I would appreciate any help you can provide.</p>
<p>Please let me know if I am leaving out important information to solve the problem. Thanks!</p>
http://stackoverflow.com/questions/1889378/how-do-you-draw-a-string-with-ansi-codes1How do you draw a string with ANSI codes?esac2009-12-11T16:57:32Z2009-12-11T17:07:07Z
<p>I want to write a custom control, similar to RichTextBox which receives an ANSI code formatted string (\e[0;32mHello \e[0;37mWorld) where the codes represent the colors of the text (foreground, background, etc..). </p>
<p>Ideally I would just want to append any text received to this control, and the control render correctly. I have looked into converting it into RTF, but didn't have much luck there.</p>
http://stackoverflow.com/questions/1885228/seeing-new-properties-on-a-custom-usercontrol-in-visual-studio0Seeing new properties on a custom UserControl in Visual StudioBrian Ensink2009-12-11T01:12:40Z2009-12-11T09:54:29Z
<p>I have two C# .NET projects in my solution. One project is a DLL that contains a WinForms custom <code>UserControl</code>. The other project is a WinForms EXE that references and uses that <code>UserControl</code> on a <code>Form</code>.</p>
<p>I have added a handful of properties to the <code>UserControl</code> so that when I place the control on a form I can easily set these properties in the designer just like any other control.</p>
<p>All is well and good until I add a new property to the <code>UserControl</code>. The new property doesn't appear in the forms designer. I've tried doing a deep rebuild and reopening the solution.</p>
<p>I can manually go into the .designer.cs file and set the new property's value. The project will actually compile and run but the forms designer claims the property doesn't exist and will not open the form.</p>
<p>The only thing I've found that works is to close and restart visual studio. Is there any other way to see the new properties without restarting Visual Studio?</p>
<p><strong>Edit</strong>
I tried reproducing this in a clean solution and everything seemed to work. Then I remembered that in the the original solution the DLL is signed and installed to the GAC with a post-build step. I think the Visual Studio forms designer is loading the assembly from the GAC to reflect on it to get the list of properties. This is fine until I add new properties. I can build the assembly and install it again to the GAC but Visual Studio does not see the new properties.</p>
http://stackoverflow.com/questions/1884773/asp-net-user-control-declaration-in-designer-cs-file0ASP.NET User Control declaration in designer.cs fileMike C.2009-12-10T23:13:52Z2009-12-11T00:30:40Z
<p>Hi,
On my .aspx page, I have the following declaration to user my user control:</p>
<pre><code><%@ Register TagPrefix="uc" TagName="ProductCategoryMenu" Src="~/Resources/Common/Controls/productCategoryMenu.ascx" %>
<uc:ProductCategoryMenu ID="ProductCategoryMenu" runat="server" />
</code></pre>
<p>Whenever the .designer file autogenerates, it declares</p>
<pre><code>protected global::System.Web.UI.UserControl ProductCategoryMenu;
</code></pre>
<p>instead of the actual type of my user control. Is there a way I can change that so I don't always have to open the .designer.cs file and correct it? Thanks!!</p>