[DOTNET] HELP!! Problem w/ Code Behind

2002-05-17 Thread James Alexander
I'm in a real tight spot and would really appreciate some help. I've created a Custom Server control along w/ some other web forms that I'm I've deployed on a server. I then have another ASP.NET application that I've created a virtual directory which points to the other web forms files associated

[DOTNET] ArrayList.ToArray() Problems

2002-05-06 Thread James Alexander
I'm having a problem w/ the following: Entry[] _entries = _tempentries.ToArray(System.Type.GetType("Entry")); Entry is a struct I've created and _tempentries is an ArrayList holding a collection of Entry's. I then want to create an Entry array however everytime I attemp the above snippet, I get

Re: [DOTNET] Problem w/ Custom Server-Side Control

2002-04-29 Thread James Alexander
Control >>>> <%= this.Parent.ScriptPath %> You will need to cast Parent to your custom type, HTH, -Victor. > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] > On Behalf Of James Alexander > Sent: Monday, April 29, 2002 3:46 PM >

Re: [DOTNET] Problem w/ Custom Server-Side Control

2002-04-29 Thread James Alexander
Do you need to call the base CreateChildControls function? --b Bryan Batchelder eBusiness Consultant ConnectWise, Inc. 813-935-7100 x 425 > -Original Message- > From: James Alexander [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 29, 2002 2:46 PM > To: [EMAIL PRO

[DOTNET] Problem w/ Custom Server-Side Control

2002-04-29 Thread James Alexander
I've been attempting to write a server-side web control and have run into a bit of a hurdle. In my web control, I'm overriding the CreateChildControls method to load a user control, like this: protected override void CreateChildControls () { EditorControl oEditorControl = (EditorControl) Page.

[DOTNET] (newbie) Problem w/ Custom Server-Side Control

2002-04-28 Thread James Alexander
I've been attempting to write a server-side web control and have run into a bit of a hurdle. In my web control, I'm overriding the CreateChildControls method to load a user control, like this: protected override void CreateChildControls () { EditorControl oEditorControl = (EditorControl) Page.