Search

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

Matching Posts

  • Entity Framework and Splitting Confusion

    Hi guys, I think i'm missing the point somewhere along the line when it comes to entity framework but i'm convinced I should be able to to do this. I've got two related tables, for the sake of argument lets call them person(personid, surname) and persontype(persontypeid, name). Person must have a persontype and a persontype can be assigned to zero or more person records. So I create the data model from my database and it sows up the correct linkage. I copy the persontype.name property
  • Nested Web Sites & Sitemaps

    I'm trying to merge two separately created web sites into a parent and child application. I have [web site a] and [web site b], what I need is to make [web site b] a child of [a]. I.e I browse to [web site a]/[web site b] I've managed to get that working (with a lot of headaches with interferring config) but the Web.sitemap for [web site b] has now stopped working. a snippet of the sitemap might be something like: I've tried appending [web site b] / to the beginning of the URL's to
  • Re: Custom Control Rendering Disappears During Postback

    Thanks thats great, it's given me just the starting point to continue. Praise be to polymorphism!
    Posted to Custom Server Controls (Forum) by jumpingmattflash on 4/25/2008
  • Re: Sys.Webforms.PageRequestManagerParserErrorException & Update Panels Issue

    I managed to work out the issue in the end. It was caused by a issue which i originally thought was unrelated. The custom code i'd added for changing the Threads culture was changing it between posts - resulting in the issue I experienced.
    Posted to ASP.NET AJAX UI (Forum) by jumpingmattflash on 4/24/2008
  • Re: Sys.Webforms.PageRequestManagerParserErrorException & Update Panels Issue

    Thanks for your reply but no where does my control use response.write or server.execute. I simply modify the visible property of the panels plus a bit of other jiggery pokery to display the data I need. I'm convinced it's something which has recently installed via windows update thats causing the issue but am struggling to proove it. Matt
    Posted to ASP.NET AJAX UI (Forum) by jumpingmattflash on 4/23/2008
  • Sys.Webforms.PageRequestManagerParserErrorException & Update Panels Issue

    Hi there, I'm currently in the process of pulling my hair out trying to resolve this issue which has recently been introduced into my application. I have an Update panel with a number of panels in which are displayed after clicking through the steps. Something like the following simple example, where pressing the button shows the next panel but keeps the previous ones open. <Update Panel> <Panel>Displayed First <button></Panel> <Panel>Displayed Second <button><
    Posted to ASP.NET AJAX UI (Forum) by jumpingmattflash on 4/22/2008
  • Custom Control Rendering Disappears During Postback

    I imagine the issue here is more of an architecture one than a syntax one. I've created a custom class which inherits from TreeNode and overridden two of the render events. The custom code appends anchor tags either side of the TreeNode links. When I populate the treeview using CustTreeNodes this works fine, however, when I postback the nodes are all rendered using the standard TreeNode html without my extra tags. Is there something i've missed which I need to do to persist the rendering
    Posted to Custom Server Controls (Forum) by jumpingmattflash on 4/18/2008
  • Multiple Update Panels & Control Events

    Thankfully i've been able to re-create this issue but i'm still not entirely sure why it happens as it does. I've created a page with two update panels, inside of each is a label and a button. Each label is set to the current date when the labels PreRender event fires. The first time this loads, each event fires at pretty much the same time. As expected if i press either of the buttons, both label PreRender events fire and update the corresponding label. However If i set the update mode
    Posted to ASP.NET AJAX UI (Forum) by jumpingmattflash on 10/17/2007
  • Re: Binding DropDownList SelectedItem using DataSource

    [quote user="Allen Chen – MSFT"] Hi: From your description I think you can try this: <asp:DropDownList DataSourceID="Data_Source_of_the GridView (or anything else as the container)" DataTextField=" Culture " DataValueField=" Culture " SelectedValue= ' <%# Eval("Culture") %> ' ID=" Culture " runat="server"> </asp:DropDownList> If it's not what you need, please inform us. Thanks [/quote] Thats about
  • Re: Binding DropDownList SelectedItem using DataSource

    I'm trying to bind the value in a DataSource to be the selected listitem in a drop downlist. Something Like this where "Culture" is the users current culture 1 < asp:TemplateField > 2 < ItemTemplate > 3 < asp:DropDownList ID= "Culture" runat= "server" > 4 < asp:ListItem Text= ' <%# Bind("Culture") %> ' /> 5 < asp:ListItem Text= "es-ES" Value= "es-ES" /> 6 < asp:ListItem Text= "en-GB"
Page 1 of 5 (41 items) 1 2 3 4 5 Next >