| Thread | Last Post | Replies |
|
| RaisePostBackEvent and Web Controls Event Handlers | 31 Aug 2003 18:04 GMT | 1 |
If RaisePostBackEvent fires, does this disable Webcontrols events? It seems when RaisePostBackEvent, my webcontrols event handlers such as button.click no longer work. So, what is the best way of mixing non-composite controls and web controls?
|
| web form add a line break to a place holder | 29 Aug 2003 00:34 GMT | 1 |
have a web form with page layout = FlowLayout have a PlaceHolder adding controls to the PlaceHolder e.g. PlaceHolder.Controls.Add (TextBox1);
|
| Numbers or letters in a TextBox | 28 Aug 2003 05:31 GMT | 1 |
How I can have a TextBox that to only lets me enter letters or numbers?
|
| Programmatically created web user control events | 27 Aug 2003 21:17 GMT | 1 |
I'v made a web user control that I use in one of my .aspx pages. This user control is dynamically loaded a number of times depending on the content of a ArrayList(stored in the session) containing DataSets. Each DataSetscontains the necessary information required to fill the
|
| Custom Controls and Type Properties not saving in html tag | 25 Aug 2003 12:47 GMT | 2 |
I am building a custom control and I add one primitive type (MyProperty1) and one MyClass type (MyProperty2) as public properties I had to make MyClass implement the IComponent interface so it would show properly in the properties window ( It show the name of the property and a +
|
| Can not access properties of controls of user control??? | 25 Aug 2003 01:03 GMT | 2 |
I have created a user control, and need to change the properties of controls on the user control. However, if the form of user control are not runat=server, I got error of "...is null or not a object". If I have the form runat=server, I got error of "A page can have only one
|
| Composite Controls and Me.Page.IsPostback Problem | 23 Aug 2003 20:01 GMT | 1 |
In my Composite Control's Sub New Function I am unable to check if Me.Page.IsPostback. Me.Page is Nothing (so i get a NullReferenceException). Do I have to pass the Page Object to my composite control to get access to IsPostBack?
|
| Why is it that a TableCell cannot have both Text and a Child Control? | 22 Aug 2003 01:30 GMT | 3 |
Why are child controls and text mutually exclusive using ASP.NET? The code below gives me either one or the other? private void Page_Load(object sender, System.EventArgs e) {
|
| Problem with a usercontrol | 21 Aug 2003 08:22 GMT | 1 |
Dear Friends, I'm working on a web based(ASP.Net) project. This project contains multiple web projects. I want to use a usercontrol which has been developed in some of these
|
| Dynamic Loading Style. | 20 Aug 2003 18:51 GMT | 1 |
Is there an easy way to load a style like loading a template with LoadTemplate. I've created a workaround for this, but there must be a better way to do this.
|
| Datagrid Binding Error: "Object does not match target type." | 20 Aug 2003 13:57 GMT | 1 |
I have a datagrid in which I want to visualize objects of various type (they inherit from the same base class). I want to display common properties of the objects over the grid. At runtime I create an ArrayList that contains all the objects . When I make
|
| EventArugment Not Being Passed | 20 Aug 2003 07:31 GMT | 1 |
I've been struggling for the past few days to get a custom control to pass events to RaisePostBackEvent. My page successfully fires the RaisePostBackEvent, however, the EventArugment is always nothing. I do not understand why the event
|
| Composite control events dont fire. | 19 Aug 2003 13:14 GMT | 3 |
I cannot figure out why this doesnt work. This is almost exactly the same as the samples I've seen but it doesnt work for me. I am making a composite control with a button that has a click event but the event never fires.
|
| receiving databound property data in a custom server control | 19 Aug 2003 10:54 GMT | 1 |
Hi, Background: I wrote a custom server control with a public property. Everything works perfekt when I use that server control as following:
|
| Can someone comment my Custom control? | 18 Aug 2003 20:34 GMT | 3 |
I have now used ASP.NET for a couple of weeks and it _really_ looks good. I have made a custom control, wich has to act as my header on every site. Before i go any further with my control I would appreciate your comments on the design (wich problably is bad) Sorry for the long post. ...
|