Search

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

Matching Posts

  • Re: CollapsiblePanel causing UpdatePanel problems

    Thank you, this is the solution.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by poklacsek on 11/20/2007
  • Re: DetailsView with DataSet

    Thanks, but I don't want to use SqlDataSource or ObjectDataSource control, because my DataSet has variable rows. I thought that if I have a DetailsView with a DataSet, I can access thats fields after the updating and I can put it to the database with my own data access methods. So I think I'm missing something. Or if I don't use any DataSource control, I can't access the updated fields of the DetailsView?
    Posted to Data Presentation Controls (Forum) by poklacsek on 9/5/2006
  • Re: DetailsView with DataSet

    The GetDataView() method: 1 protected DataView GetDataView() 2 { 3 DataSet ds = new DataSet( "dataset" ); 4 DataTable dt = new DataTable( "datatable" ); 5 6 dt.Columns.Add( "column1" ); 7 dt.Columns.Add( "column2" ); 8 dt.Columns.Add( "column3" ); 9 10 DataRow row = dt.NewRow(); 11 row[ "column1" ] = "data1" ; 12 row[ "column2" ] = "data2" ; 13 row[ "column3" ] = "data3" ; 14 dt.Rows.Add
    Posted to Data Presentation Controls (Forum) by poklacsek on 9/4/2006
  • DetailsView with DataSet

    Hi! I have a DataSet(ds) with variable rows, ds.Tables[0].DefaultView is the DetailsView's DataSource. The DetailsView shows the rows without problem, after I hit the Edit button too, but if I press the Update button, I can't access the DetailsView's rows, neither with e.Keys, e.NewValues, e.OldValues and DetailsView1.Rows[0].Cells[0].Text. What do I wrong? The code: 1 < asp:DetailsView ID= "DetailsView1" runat= "server" Height= "50px" Width= "125px"
    Posted to Data Presentation Controls (Forum) by poklacsek on 9/3/2006
    Filed under: DetailsView
Page 1 of 1 (4 items)