| Thread | Last Post | Replies |
|
| 2nd attempt - post back event in server control | 30 Sep 2006 15:22 GMT | 1 |
my code is not getting successful result. how do I get the server control to recognize a button click event ?? ========code============= Public Class MyButton
|
| Nested Collection property in a custom control | 30 Sep 2006 14:57 GMT | 1 |
I have the extactly the same problem.. I am creating a control where a collection property is exposed which has a nested collection object. It looks something like this once i enter data through the default editor (in the design view)..
|
| Exposing an event handler as a control property | 30 Sep 2006 03:03 GMT | 3 |
I have a custom server control that can contain one or more buttons. I'm trying to expose an event handler as a property so that the buttons can fire a click event when clicked. However, I'm getting the following error:
|
| Composite Control with Templates - DropDownList bubble events | 29 Sep 2006 10:23 GMT | 6 |
I have a base composite control that uses templates. If I add buttons (image, link, etc ..) to the template we can bubble the event as an item command using the following ... Protected Overrides Function OnBubbleEvent(ByVal source As Object, ByVal e
|
| Unload Usercontrol | 29 Sep 2006 07:21 GMT | 2 |
I Had realized a user contro ctrlContro and i load it in this way: ctrlControl c1=new ctrlControl c1.Partent=this; c1.Show();
|
| How do you deploy custom server controls? | 28 Sep 2006 23:31 GMT | 4 |
I have built custom server controls and as long as the library with those controls is directly referenced by the web application in the same Solution I can automatically see the controls in the toolbox. How can I deploy controls so that Visual Studio will display them in
|
| HttpModule Cookie Problem | 26 Sep 2006 18:49 GMT | 1 |
I wrote a HttpModule to inspect the user's current page and to assign a source a content category to them. The problem is that when it runs, it wipes out users cookies which logs them out of the site and wipes out their basket. I can't recreate the error in any sort of test or ...
|
| User control not seen on code beside (behind) page | 25 Sep 2006 16:47 GMT | 2 |
Can someone shed some light on how to get this user control to work? I created a simple user control with several properties (I want to access these properties server side on another web form (a web control consumer page)). Then I drug the user control on to the web form where I ...
|
| expose an event | 24 Sep 2006 07:13 GMT | 1 |
I had write a usercontrol ctrl1 with a textbox and two button, button1 and button2. I had drow ctrl1 in a windows form. I would like to know when i click button1 e when i click button2.
|
| How to write a control that doesn't require a closing tag | 24 Sep 2006 07:10 GMT | 6 |
I've built a custom control that won't contain any inner content. If I derive the control from Control, then the VS editor will always add the closing tag when I use the control. I can derive from UserControl and it doesn't do this, but I'm not sure whether is the best way to do
|
| Treeview and rendercontrol | 24 Sep 2006 07:03 GMT | 1 |
I try to get the html code of the treeview by doing this : TreeView Tview = new TreeView(); TreeNode tnode = new TreeNode("Node1", "1"); Tview.Nodes.Add(tnode);
|
| post back event in server control | 24 Sep 2006 06:54 GMT | 1 |
how do I get the button event recognized in the post back from a server control ?? ========code============= Public Class MyButton Inherits System.Web.UI.Page
|
| Dynamic control creation in datagrid based on data in that column | 24 Sep 2006 06:51 GMT | 1 |
I am creating a dynamic datagrid. The controls in some of the template columns will have to be generated based on the data contained in them (i.e. the data for that respective DataField column). For example, if I have a column called Available, the possible values for it are Yes or
|
| How to load aspx page using ajax | 24 Sep 2006 06:47 GMT | 1 |
I want to load ASPX page using javascript ( ajax ) in an other page How can i do get it Thansks in advance
|
| LoadPostData and html <select> with multiple selections | 24 Sep 2006 05:32 GMT | 1 |
Thanks in advance to anyone else who can help :) I've got a custom control that contains a PLAIN HTML <select> element that allows multiple selections (NOT A asp.net listbox, listcontrol or derivatives, etc.)
|