| Thread | Last Post | Replies |
|
| Repeater paging problem | 23 Sep 2004 22:59 GMT | 13 |
I'm trying to do the following but I can't understand what's wrong. Could you help me here! I do paging with a Repeater like this: DataSet ds = new DataSet();
|
| Web calendar control to display a single month only | 23 Sep 2004 14:45 GMT | 3 |
I am using the webcontrol calendar, and would like to display only a single month. At the moment, the calendar displays running days from the previous and next months also. e.g if displaying September 2004, days from August 2004 and October 2004 are visible also.
|
| sharing data between custom controls | 23 Sep 2004 14:17 GMT | 4 |
I have two custom controls on a page that work on the same object that needs some prepping when first loaded. Currently I just load them in both controls individually, essentially doing the same work twice. What's the best way to share data between controls? I know I could place the
|
| Setting Attribute so some controls will not show in ToolBar? | 23 Sep 2004 13:59 GMT | 1 |
I have a custom control library but do not what all of my controls to be added to the toolbar every time I use the 'Tools>>Add/Remove Toolbar Items' menu. Is there some attribute I can add to my control so that it will not show here. (I realize that I can uncheck or delete it, ...
|
| PlaceHolder Control | 23 Sep 2004 13:52 GMT | 2 |
I have put the place holder control in my web form but it always aligne at the top left of the web. How can i align it at design time or run time.? Japhet.
|
| Exposing ListItems in Composite Control | 23 Sep 2004 10:15 GMT | 7 |
I'm trying to build a composite control that consists of a select inside a div (a listbox inside a panel). My problem is that when I compile the control and drag it onto a webform, the Items collection property that shows up in the Properties window of VS.net doesn't give
|
| dynamic web user control and viewstate | 23 Sep 2004 09:08 GMT | 1 |
I am trying to get to grips with dynamic controls and viewstate, but my situaition is more complicated as I am actually using a web user control. I thought if I can explain what I'm trying to achieve maybe someone can point out the best way to approach it.
|
| Database Dynamically Generated WebForms | 23 Sep 2004 09:03 GMT | 7 |
Is the following possible in .Net? Specifically c# codebehind using webcontrols. I'm pretty sure it isn't but I wanted to check to make sure.. Basically I have an object, lets call it a TEMPLATE. Each TEMPLATE
|
| From a Panel how to pass values into User Control | 23 Sep 2004 04:23 GMT | 1 |
Inorder to react to events I have added a usercontrol onto a Panel on my main page. The problem is the user control takes inputs to initalise itself. In the common method of adding a usercontrol into a page. I would write this ..
|
| Linkbutton in User Control Not Working | 22 Sep 2004 04:27 GMT | 4 |
I am loading a user control into a panel on my default page "Default.aspx" : void LoadControlData() { this.pnlCONTENT.Controls.Add(LoadControl("Default_Content.ascx"));
|
| Changing the background color of the selected item in a listbox. | 21 Sep 2004 17:01 GMT | 2 |
I'm working on an ASP.Net page that has our company logo and a colored banner to customize the appearance. The page also includes an asp listbox control. However, the colors I see inside the listbox when your cursor is on an item as well as the colors of the scrollbarand the ...
|
| Custom controls + nested tags | 20 Sep 2004 23:03 GMT | 6 |
Hi, I'm developing a Web Custom Control and I'm facing some problems with HTML tags that do not have a closing pair (like <br>,<img>). Let's say I have a loop that create <div> tags and inside it I put some text and images:
|
| UserControl - Doesn't fire child events | 20 Sep 2004 20:21 GMT | 1 |
I have a user simple usercontrol with a button, created with VS2005, the Load event fires but the Button event doesn't. <%@ Control Language="VB" AutoEventWireup="false" CompileWith="WebUserControl.ascx.vb" ClassName="WebUserControl_ascx" %>
|
| Enable server button control from client code? | 20 Sep 2004 02:50 GMT | 1 |
Hello dotnet framework group, This question on the webforms controls. I have a web form (C# behind form) with 2 buttons (one a regular html input, type = button, not submit)
|
| How to assign Action property to the Form | 19 Sep 2004 08:51 GMT | 7 |
In my application on the Webform I need to assign an action property to the form in code, because the URL is a variable. In MSDN there is an example - everything is simple: Form1.Action=URL
|