Search

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

Matching Posts

  • Re: Viewstate Growth

    Ok, so the culprit was Telerik's RadComboBox. More specifically, it was the lack of support for Dynamic Data using RadComboBox. To be even MORE specific: The workaround for using a RadComboBox with DynamicData is to have a DropDownList with visible set to false, call the PopulateListControl on that DDL and then copy the items to RadComboBox. This works fine, except when you do that on every postback... I'm guessing it stuffs the entire list into Viewstate when you do it that way, and since
    Posted to ASP.NET Dynamic Data (Forum) by Sarvis on 7/7/2009
  • Re: Viewstate Growth

    *bump* I really need to get this figured out soon...
    Posted to ASP.NET Dynamic Data (Forum) by Sarvis on 7/4/2009
  • Re: Viewstate Growth

    Honestly the code here is... complex. I'm basically designing a system that let's me create a heirarchical form, where you can edit child objects as well as the parent object.... the fun part being that some of the child objects don't even exist. So some of the field templates actually create listviews or formviews, and all kinds of events are captured and trapped to make sure the forms stay in synch. It actually works pretty well except for this one horrible issue... :( Like I said though
    Posted to ASP.NET Dynamic Data (Forum) by Sarvis on 7/4/2009
  • Viewstate Growth

    I'm writing a pretty complex web form using ASP.NET Dynamic Data. Several of the controls on this form post back, since there are dependencies between controls. I'm noticing that the viewstate is growing larger with every postback, until after 5 or so there is a long delay between the Render process and the page actually loading in the web browser. This occurs even if I'm JUST clicking a radio button to cause the postback, without entering any data or any other changes into the form.
    Posted to ASP.NET Dynamic Data (Forum) by Sarvis on 7/2/2009
  • Why is a child property getting overwritten when a Linq object is being updated?

    I'm updating one object, and trying to update any child objects along with it. Basically I'm handling the OnUpdating event of a LinqDataSource. In the DataContext class I have the ObjectUpdate function (where right now I've just got a breakpoint so I can see the values...) In the LinqDataSource.OnUpdating event e.NewObject.Child is null, which makes no sense whatsoever. I set that to a new value, but by the time I get to DataContext.ObjectUpdate NewObject.Child has been overwritten with
    Posted to Data Access and ObjectDataSource Control (Forum) by Sarvis on 6/17/2009
    Filed under: "Linq to Sql" LinqDataSource, .NET 3.5 SP1, "Linq to Sql", .net linq c#
  • ASP.NET Mobile - Getting Value from ObjectList

    I'm writing a "simple" web app for web enabled phones. I'm using ObjectList to show a list of service orders, and need to allow certain commands to be fired on those. All is fine, more or less, with the layout and everything... but in the ItemCommand event the MobileListItem in the command argument does not have it's Value or Text property set. I can't find the Text or Value in the Items array of the ObjectList either. I've got no idea how to get the actual value...
    Posted to Mobile and Handheld Devices (Forum) by Sarvis on 11/15/2008
  • Setting Web User Control Properties With Inline Code

    Ok, what I need is to have a Web User Control that presents information based on the values of other controls in the main page. So I gave the web user control a property for the key value, and everything works fine as long as I manually set the value. For example: < syn : PartSelect ID ="psSelect" Mode ="EDIT" ModelID ="5" runat ="server" /> The ModelID is what should depend on another control value on the page, so I tried this: < syn : PartSelect
    Posted to Web Forms (Forum) by Sarvis on 8/21/2008
  • Re: Wizard, FormView, DropDownList and Bind

    Forgot to mention, I have a couple Web User Controls within the Wizard that contain DropDownLists, and those work just fine. I guess if I had to I could wrap these into a web user control, but I'd rahter not just because of this...
    Posted to Data Presentation Controls (Forum) by Sarvis on 8/1/2008
  • Wizard, FormView, DropDownList and Bind

    Ok, so I have a FormView. Inside of the FormView InsertItemTemplate is a Wizard, which has some steps that contain DropDownLists. The DropDownLists are dependent on each other, such that you must select a value from the first before the second will get values. I'm using ObjectDataSource for the binding. Here's the problem: When the second DropDownList binds it's data, I'm getting the following error: "Databinding methods such as Eval(), XPath(), and Bind() can only be used in
    Posted to Data Presentation Controls (Forum) by Sarvis on 7/31/2008
Page 1 of 6 (58 items) 1 2 3 4 5 Next > ... Last »