Search

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

Matching Posts

  • Re: UpdatePanel screws layout

    Hi The problem you encounter may be because the code is not well formatted. Specifically, the closing tag for the <div> should be after the closing ContentTemplate and atlas:UpdatePanel tags (see below marked in green). <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server
    Posted to ASP.NET AJAX UI (Forum) by irinelc on 3/29/2006
  • Re: Javascript error using Atlas WebPartManager

    Hi I have trouble reproing the behavior you are seeing... Are you using the March CTP? Irinel
    Posted to ASP.NET AJAX UI (Forum) by irinelc on 3/24/2006
  • Re: A ContentTemplate must be specified for UpdatePanel

    Do not confuse the ASP.NET Panel control with the ASP.NET "Atlas" UpdatePanel. The ASP.NET "Atlas" UpdatePanel is a new control able to do partial rendering In typical ASP.NET 2.0 applications, when a postback occurs, the page is re-rendered. This causes the page to flash in the browser. On the server, during postback, the page lifecycle executes. This ultimately raises the control event that caused the postback and runs the event handler (for example, a Button control's Click handler). The ASP.NET
    Posted to ASP.NET AJAX UI (Forum) by irinelc on 3/24/2006
  • Re: Problem with the UpdatePanel and Web Parts

    There is a known issue with the UpdatePanel not working inside a dynamic WebPart (since it must be added to the page dring or before PreInit.)... Irinel
    Posted to ASP.NET AJAX UI (Forum) by irinelc on 3/24/2006
  • Re: UpdatePanel adds a &nbsp; if it's empty after update

    Hi I want to repro this and I need your help... How do you update it? Is it enough to add a button inside the update panel with a trigger that causes the update panel to do his job? Irinel
    Posted to ASP.NET AJAX UI (Forum) by irinelc on 3/24/2006
  • Re: March CTP Menu Control JavaScript Error

    Thanks for reporting it!!!! Irinel
    Posted to ASP.NET AJAX UI (Forum) by irinelc on 3/22/2006
  • Re: Atlas Installation Error

    Hi I am trying to repro the problem you describe and I need your help... Can you give us some details about the configuration you are attempting the install on? I am particularly interested to know the OS, IIS (installed, not installed and if present the version), the Framework (installed, not installed and if present the version) and the Visual Studio flavor (Express, Ent etc) Irinel
  • Re: Detailsview Template control

    Hi Here is a master-detail page sample that displays the data in the gridview columns depending on what checkboxes were selected from the other control. The code is against pubs/authors sample database. aspx page (code inside the form tag): <div> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:pubsConnectionString %>"></asp:SqlDataSource> <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings
    Posted to Data Presentation Controls (Forum) by irinelc on 3/20/2006
  • Re: Align FormView content to the right.

    Hi You just need to set the HorizontalAlign property. Here is an example: <asp:FormView ID="FormView1" runat="server" DataKeyNames="au_id" DataSourceID="SqlDataSource1"> <EmptyDataRowStyle HorizontalAlign="Right" /> <EditRowStyle HorizontalAlign="Right" /> <EditItemTemplate> au_id: <asp:Label ID="au_idLabel1" runat="server" Text='<%# Eval("au_id") %>'></asp:Label><br /> </EditItemTemplate> <RowStyle HorizontalAlign="Right" /> <InsertItemTemplate>
    Posted to Data Presentation Controls (Forum) by irinelc on 3/8/2006
  • Re: DataNavigateURLFields in HyperlinkFiled

    I've got confused. My fault. Sorry for that Irinel
    Posted to Data Presentation Controls (Forum) by irinelc on 2/27/2006
Page 1 of 22 (214 items) 1 2 3 4 5 Next > ... Last »