.net - Subscribing To An Event Defined In The Base User Control?

Apr 4, 2011

I have a base user control (inherited from System.Web.UI.UserControl)

public delegate void MyEventHandler(object sender, MyEventArgs e);
public event MyEventHandler ControlLoaded;
//Fire the event from here
protected override void OnLoad(EventArgs e)
{
MyEventArgs cmdEventArgs = new MyEventArgs("somearg");
ControlLoaded(this, cmdEventArgs);
}

I have several controls that are derived from this base user control.

On the host ASPX page, I need to subscribe to the ControlLoaded event.

protected void Page_Load(object sender, EventArgs e)
{
//subscribe to the event
//This line DOES NOT WORK as I cannot attach event to a base control - It needs an instance of the user control which I don't have
BaseUserControl.ControlLoaded += new MyEventHandler(ControlLoaded);
}
private void ControlLoaded(object sender, MyEventArgs e)
{
// some control has been loaded
}


How do I subscribe to the ControlLoaded event?

View 1 Replies


Similar Messages:

Subscribing To Event Handlers?

Mar 26, 2010

I'm curious about the pros and cons when subscribing to event handlers.

<asp:DropDownList id="DropDownList1" runat="server" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" />
vs
protected void Page_Init(object sender, EventArgs e)[code]...

View 2 Replies

Server Controls In User Control Are Null When User Control Serves As A Base User Control ?

Jun 4, 2010

I don't think I understand fully how ASP.NET does inheritance of controls.I have a user control, ucBase, which has an asp.net label in the ascx file. Code behind references the label and it works fine during run time if the control is not a parent for another user parent.

If I have another user control, ucChild, inheriting from ucBase, the label in ucBase's code is always null. ucChild has no controls in its ascx fileThe server controls (like the label) needs to be declared in the ascx file and not created programmatically.What needs to be done for ucBase to see its own controls when it's a parent user control?

View 1 Replies

Web Forms :: Assignment Of FormView Control In Design-time To User Defined Composite Control

Feb 1, 2011

i create a composite control as can be seen in code below, and add this control to webform, assign FormView1 to the HeaderControlName property, Run the page, the system will generate parse error message :
Cannot create an object of type 'System.Web.UI.WebControls.FormView' from its string representation 'FormView1' for the 'HeaderControlName' property. However, if i don't assign FormView1 in design screen and manually (through coding) assign FormView1 to the custom control on init, it works as expected.

custom control
public class CmdTest : CompositeControl
{
public virtual FormView HeaderControlName
{
get
{
object oObject = ViewState["HeaderControlName"];
return (oObject == null) ? null : (FormView)oObject;
}
set
{
ViewState["HeaderControlName"] = value;
}
}
protected override void CreateChildControls(
{
Controls.Clear();
Button xx = new Button();
Controls.Add(xx);
}
}
webpage.aspx (assign FormView1 in design time, it will generate error)
<Utils:CmdTest ID="CmdTest1" runat="server" HeaderControlName="FormView1" />
webpage.aspx (didn't assign FormView1 in ASPX, but assign it on Init Code, it works)
<Utils:CmdTest ID="CmdTest1" runat="server" oninit="CmdTest1_Init" />
Webpage.aspx.cs
protected void BsCmdTest1_Init(object sender, EventArgs e)
{
CmdTest1.HeaderControlName = FormView1;
}

View 2 Replies

C# - How To Implement User Base Security Not Role Base

Apr 26, 2010

I have to implement User base security in my Web project using .Net3.5. Followings are some we need:

Roles can be Admin, Manage, Editor, Member etc User can have multiple roles Every roles has its own dynamic menus and restrictions/resources All menus and interface will populate dynamically from Database

I heard some where this kind of i.e user base security can be implemented using HashTable but I dont know how is it?

Today I came to know that for this kind of work Java people use Interceptor Design patterns. So, how could I do the same in asp.net C#?

View 2 Replies

Set Focus To User Control And Blur Base Page?

Feb 11, 2010

I have a progress bar (which is a user control). When user, click a button, this progressbar will get displayed. The issue is ...even if the progressbar is visible, I am able to set focus to other controls in base page. I need to blur the base page...and set focus to user control.

View 2 Replies

How Does The Child User Control Inherit The Markup From The Base Class

May 25, 2010

I have a user control (uc1) which inherits from uc2. uc2 has a user control (uc3) declared in the markup. I am trying to access uc3 from uc1 but I get NullReferenceException. I thought due to inheritance uc3 would instantiate but looks like I am missing a step.

Clarification:

How does the child user control inherit the markup from the base class? The server controls in the base user control are null in the code behind of the base user control. Why?

View 4 Replies

Web Forms :: How To Access Values Of Controls Defined In A User Control

Dec 1, 2010

I am developing an application in which I have to use a User Control.I have created a user control in which I am using

- A Label (whose text will be dynamic)
- 3 Textboxes (whose values will be also dynamic).

So far everything is working fine.Now I used this user control in a aspx page and at the page_load i have to loop thru all the instance of this user control and assign values to them and here the problem begins.The values are not being assigned to the controls.

Here is the code which i have written to loop thru User Control instances and assign values to them.

[Code]...

View 9 Replies

Accessing User Control Properties Defined In Code Behind In Markup?

Feb 9, 2011

I have a public property defined in code behind of a user control. I want to toggle visibility of controls in the markup based on the property's value.

However, using the following syntax:

<td style="display:<%#(Container.PageControlMode == PageControlMode. PageMode.Wizard) ? "none" : "inline" %;">

I have the following property in my code behind:

public PageMode PageControlMode { get; set; }

Does not work and generate errors.

View 1 Replies

Web Forms :: Error BC30506: Handles Clause Requires A WithEvents Variable Defined In The Containing Type Or One Of Its Base Types

Jan 26, 2011

I put a server side button on the header page. The website is running fine. I use the same source and put it on IIS, it's also working fine but the problem is, i couldn't compile it anymore using my VS studio. It's showing no error so when I go and check the output (after scrolling down a bit and found one line says error). it says

C:InetpubwwwrootAmFraserIntranetheader.master.vb(31,0): error BC30506: Handles clause requires a WithEvents variable defined in the containing type or one of its base types.

C:InetpubwwwrootAmFraserIntranetheader.master.vb(32,0): error BC30451: Name 'keyword' is not declared.

keyword is the textbox on the header page. I also played around with AutoEventWireUp (true/false) and defining onclick event on the server tag but it is still not solving the problem.

View 6 Replies

UserControl Inheritance - Web Controls In Base User Control Are Null Pointer

Mar 1, 2010

i have a base user control (WC1) which inherits from WebUserControl and a child user control (WC2) which inherits from WC1. I added a textBox and a label to WC1 in vs design view not code behind. But all the server controls that i put in WC1 are null and give null pointer exception.I tried to access textBox and label in different events but the all of them are null.

Steps to reproduce the error:

create a web user control called WC1 by add a new item in VS added a textBox and label server control to WC1 in design view of VS and put code behind: var value = txetBox.Text; created another web user control called WC2 by add a new item in VS and change its base class to WC1 in its code behind create a web page by adding a new item in vs and drag WC2 to the design view of the page run the page then you will see the exception for the codebehind in WC1

[code]....

page:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WC2.ascx.cs" Inherits="WebApplication1.WC2" %>

can web server controls of WC1 be instantiated in this case? or can user control inherit from another user control and web server controls of parent user control be carried to its children without worring the layout?

View 1 Replies

How To Make User Control Partial Classes Aware Of Controls Declared In The Base Class

Mar 5, 2010

Do we have to do something special to have ASP.NET partial classes aware of controls that are declared in our user control's base classes? The partial classes keep generating declarations for controls in the base class which mean the controls in the base class get hidden and are null.

View 1 Replies

Forms Data Controls :: Calling User Defined Grid Control Two Time's On A Page?

Mar 11, 2011

i created a user control and place a button on it.i drag dropped the user control on a aspx page and wrote the grid load and button clicks in the

user control.now i got a requirement to use the same user control grid and button to again use on the same page.however the data populated will be different and the button click functionality will be different.how can i reload the different data on the second grid as i had already wrote the code in the first one

View 2 Replies

Web Forms :: Add Event Handler To User Control And Capture Event On Parent Page?

Apr 24, 2010

Using vb.net/asp.net 2005.

I have a page books.aspx that has a control named authors.ascx.

Inside the authors control there is a "select" button I want to add some kind of listener or event handler (not sure of the correct terminology) so on the parent page (books.aspx) I can respond to the "select" button being clicked.

I have to pass the authorID from the user control to the parent page.

In my authors.ascx control I just created this event:

[Code]....

Now I need to write the function for SelectAuthorBtnClick and I think add some kind of listener in the parent page to listen and handle the event.

View 7 Replies

Web Forms :: Firing Click Event On A User-control That Is Created From Another Event?

Mar 1, 2011

I have a gridview called gvResults. In the gvResults_RowEditing event I add a row below the one selected. In that new row, which spans all columns, I insert a user-control. There are two buttons and some textboxes in the user control.

My problem is that when I click one of the user-control buttons it never gets to the button event handler, I think because the user control is not recreated on the page postback. How can I have the user-control events fire before the parent page events fire?

I tried using an update panel, but I still get the parent posting back before the user-control events.

View 3 Replies

User Control To Raise An Event That Is Handled By Another User Control?

Jan 19, 2011

Is there any way for one user control to raise an event that is handled by another user control without going through the page? I am using Umbraco and do not have access to the page object.

--Edit--

Umbraco has the idea of Macro's (user controls) that it loads into pages. I can't access the page directly as this is part of the framework.

There is a publish subscribe (pubsub) pattern that I know would fit my needs well (2 user controls that need to talk to each other) but am unsure how to hook it up in ASP.Net without the page object.

View 1 Replies

How To Create A Base Page Event That Fires After The Derived Page's Load Event

Jun 30, 2010

How do I create a new event in a base page class that fires after all derived pages have fired their load events but before any controls fire their load events.

The following code fires the event before the derived page's load event. I want it to fire the event after the derived page's load event but before all control load events:

Base Class:

Public Event FirstLoad(ByVal sender As Object, ByVal e As System.EventArgs)
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
RaiseEvent FirstLoad(sender, e)
End If
End Sub

Derived Class:

Private Sub Page_FirstLoad(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.FirstLoad
'Stuff here happens before controls load but only on first page loads'
End Sub

View 1 Replies

C# - Stop Setting Onclick Event For LinkButton If No OnClick Event Was Explicitly Defined?

Feb 25, 2010

How do I setup a default setting so that if I do not set an OnClick (i.e the asp.net OnClick attribute) explicitly for an asp:LinkButton tag, it will not render an onclick(html attribute for javascript) attribute client side? By default, asp.net adds an onclick='doPostBack....' for the LinkButton.

Case for use:

There is a LinkButton tag on the page. For this page, if the user has one friend, I only want to run client side code if the button is clicked and would not for any reason want to make a post back. If the user has more than one friend I would want a click to trigger a postback.

Using any asp.net Ajaxtoolkit

Dynamically switching the control type (i.e. if friends == 1 use a asp:Hyperlink)

-I want to avoid this because it is not scalable. There might be many cases where I want an asp:Link tag to do a postback or to not do a postback depending on the user context or user attributes Using OnClientClick (I am using jQuery would like to avoid this)

View 2 Replies

Client Side Click Event Of Control In User Control Doesn't Work?

Jun 14, 2010

I have a webdayview control (Infragistics proprietary ASP.net control) on my page. On the aspx source I've inserted some javascript (webdayview_click - clientside click event) that calls a webmethod in the codebehind. This seems to work fine, but when I
insert this webdayview control into a user control and move the corresponding javascript into the aspx of the user control, it doesn't work. I can't even insert a breakpoint into the javascript function to debug it. Is there a way to make it work? I want to enable the click event of the webdayview control so that when I click on it, the javascript function calls the webmethod. Here's my code (remember it is inside a user control):

[code]...

I posted this question on the Infragistics forum but didn't get any replies. Hopefully I'll get some here. :)

View 2 Replies

Web Forms :: OnMenuItemClick Event Not Firing, Databindings Defined?

Mar 12, 2010

I've searched the forums and pretty much exhausted it on what I can find regarding the onmenuitemclick event not firing issue. The following is the code for my menu:

[Code]....

I've tried every combination of no url's defined in the sitemap, defining some of them, defining different databindings, all of which have not produce the result I want:I have 2 sitemapdatasources reading from the same sitemap. The only difference between the two is the starting node offset (which should have no effect on the rendering of the two menus). I want one menu to read only from the level 1 nodes of the sitemap and not postback (i.e., explicitly define the navigateurl field). I want my second menu to read only from the level 2 nodes of the sitemap and postback (i.e., not defining the navigateurl field). I have no problems getting the level1 nodes to redirect based on the urls. I can't seem to get SubMenu_MenuItemClick to fire. The page will postback, but the event isn't caught in the method.

View 1 Replies

User Control Event Handling

Jun 5, 2010

i have some problem with my userControl. Pls look below for better understanding. Pic1. The default page. When i click on the links on the left, userControl will load into the placeHolder as in pic2. But when i click on the Clear button that is inside the userControl, instead of clearing the text in the textbox, it load back to the default page show in pic1. Can anyone pls advise me what went wrong?

View 9 Replies

Web Forms :: Add Event To User Control?

Jul 7, 2010

I have a user control that's in it a text boxI want add the even TextChanged to that text box too reach from pagesin my user control I have 1 text box and I want reach the its "TextChanged"event to write some cod ein it in my aspx pagelike a normal textox.

View 3 Replies

C# - Button Event In Web User Control?

Oct 21, 2010

I have a problem with button event in web user control

First i have an aspx like this:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AddTest.aspx.cs" Inherits="AddTest" %>
<!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></title>
<script src="js/jquery-1.4.2.min.js" type="text/javascript"></script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div id="divContent" runat="server">
</div>
</form>
</body>
</html>

As you see i have a ScriptManager to do with ASP.NET AJAX, a div with ID divContent to load controls, then in code behind:

protected void Page_Load(object sender, EventArgs e)
{
divContent.Controls.Add(LoadControl("~/thitai/addtest.ascx"));
}

I add addtest.ascx to divContent as you see, and this is the code of addtest.ascx

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="addtest.ascx.cs" Inherits="thitai.addtest" %>
<asp:UpdatePanel ID="updatePanel" runat="server" ClientIDMode="Static">
<ContentTemplate>
<input type="button" value="Load text" onclick="updPanel('text');return false;" />
<input type="button" value="Load image" onclick="updPanel('image');return false;" />
<asp:HiddenField ID="hftype" runat="server" ClientIDMode="Static" />
<div>
<asp:PlaceHolder ID="plhControl" runat="server"></asp:PlaceHolder>
</div>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
<script type="text/javascript">
function updPanel(type) {
$("#hftype").val(type);
__doPostBack("updatePanel", "");
}
</script>

Each time i click on Load text button, i change the value of hfType (hidden field) then do postback to server using UpdatePanel, then this is code behind

protected override void OnPreRender(EventArgs e)
{
string type = hftype.Value;
switch (type)
{
case "text":
plhControl.Controls.Add(LoadControl("~/thitai/test/text.ascx"));
break;
case "image":
plhControl.Controls.Add(LoadControl("~/thitai/test/image.ascx"));
break;
default:
plhControl.Controls.Add(LoadControl("~/thitai/test/text.ascx"));
break;
}
base.OnPreRender(e);
}

This is the code of text.ascx

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="text.ascx.cs" Inherits="thitai.test.text" %>
<%@ Register Assembly="Support" Namespace="Support.CustomEditor" TagPrefix="Editor" %>
<Editor:CustomEditor ID="edNoidung" runat="server" NoScript="True" Content=""
Height="500" ActiveMode="Design" NoUnicode="True" InitialCleanUp="False" />
<div>
<asp:Button ID="Button1" runat="server" Text="Show HTML"
onclick="Button1_Click" />
</div>
<div id="showHtml" runat="server"></div>

And code behind of text.ascx

protected void Button1_Click(object sender, EventArgs e)
{
showHtml.InnerHtml = edNoidung.Content;
}

The problem is: when i click to button1, the page do a postback using AJAX but event Button1_Click DOES NOT FIRE!

View 1 Replies

Aspx Event For User Control?

May 18, 2010

In aspx page, I am using a user control which contains a button. I need to hide the button(which is in user control) when a checkbox(in aspx) is clikced. I have a postback for checkbox. I want to hide the button when the checkbox is checked. In which event I should do the hiding and unhiding?I cannot add extra property in user control. Is it possible to access the button using FindControl and disable it? Which event can be used for it?

View 3 Replies

Programmatically Modify User Defined XML?

Jun 30, 2010

I received a user defined XML file and want to programmatically read and display it on a browser using ASP.net. I also want to allow users to add more tags, elements with their attributes according to the existing schema through the web interface used to display the XML. Where can I find some techniques with examples?

Example:

<?xml version="1.0" standalone="yes"?>
<bookstore>
<book ISBN="10-000000-001"
title="The Iliad and The Odyssey"
price="12.95">
<comments>
<userComment rating="4"
comment="Best translation I've read." />
<userComment rating="2"
comment="I like other versions better." />
</comments>
</book>
</bookstore>

The XML file contains a nested structure — each book can contain its property values, as well as one or more comments as separate elements. I want to allow users to view each of the property values and change them as well as add more userComment tags.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved