Search

You searched for the word(s): userid:86984

Matching Posts

  • Re: Added WizardStep Not In Sidebar

    Thanks Frederik. After seeing that your code worked in November CTP I went ahead and upgraded to December CTP. My original code works now so this seems to have been a bug with Beta 1. I've only had this version up for a few hours but I have run into weirdness that I did not have with Beta 1. Anybody thinking of upgrading to fix this or other bugs is advised to check this page: http://spaces.msn.com/members/slee/PersonalSpace.aspx?_c= Unfortunately, I misread one thing on the uninstall instructions
  • Added WizardStep Not In Sidebar

    I am able to add a WizardStep to a Wizard control programmatically. However, the Title of the added WizardStep is not included in teh sidebar. Any thoughts? Here's codebehind: public partial class Test3_aspx { protected override void OnInit(EventArgs e) { base.OnInit(e); WizardStep ws = new WizardStep(); ws.Title = "My Title Is Important Too"; ws.Controls.Add(new System.Web.UI.LiteralControl("I wish my title would show in the sidebar.")); Wizard1.WizardSteps.Add(ws); } } In my
  • Re: Composite Control At Design Time with DropDownList

    Hey all, I did a little poking around the forum and found out about the code tag. Hopefully this helps with readability of the code I posted. namespace TestControls { [ToolboxData("<{0}:TestControl runat=server></{0}:TestControl>")] public class TestControl : CompositeControl { private DropDownList internalDdl; private XmlDataSource internalDS; private String baseDir; public string XMLSource { get { string s = (string)ViewState["XMLSource"]; return (s == null) ? String
    Posted to Hosting Open Forum (Forum) by alexrosen on 1/7/2005
  • Composite Control At Design Time with DropDownList

    I have a DropDownList in a CompositeControl. The DropDownList uses an XmlDataSource as its datasource. The XmlDataSource loads an XML file from a known directory. The control works as I need at run time but at design time either the data source is not loading or it's not binding. Is it possible to make them work? Here's what I have now: namespace TestControls { [ToolboxData("<{0}:TestControl runat=server></{0}:TestControl>")] public class TestControl : CompositeControl { private
    Posted to Hosting Open Forum (Forum) by alexrosen on 1/7/2005
  • Re: Composite Control Design Time Behavior

    Frederik, Thanks so much for that simple and elegant solution. I knew there had to be an easy way but everything I was reading was steering me away from what should have been more obvious. Thanks! - Alex Rosen
    Posted to Hosting Open Forum (Forum) by alexrosen on 1/7/2005
  • Composite Control Design Time Behavior

    I am running into trouble using controls that inherit from the CompositeControl class at design time. Here is a simple example control: namespace TestControls { [DefaultProperty("Text")] [ToolboxData("<{0}:TestControl runat=server></{0}:TestControl>")] public class TestControl : CompositeControl { private TextBox createdControl; [Browsable(true), Category("Misc")] public String Text { get { EnsureChildControls(); return createdControl.Text; } set { EnsureChildControls
    Posted to Hosting Open Forum (Forum) by alexrosen on 1/7/2005
Page 1 of 1 (6 items)