Re: could you do this with a gridview

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Stan

    Re: could you do this with a gridview

    check out this code sample at ASPNet101.com:http://www.aspnet101.com/aspnet101/a...px?code=gvfull...

    Quite fascinating!

    However the GridView in the sample has to be supplemented with so much
    code (in an effort to override its normal behaviour) that it becomes
    questionable as to whether the use of such control is worth it. You
    might as well construct an ordinary table adding rows and cells whilst
    iterating through a database table. That way you can do exactly what
    you like and have complete control over all events with behaviours,
    binding expressions and procedures of unlimited complexity.
  • =?Utf-8?B?UGF1bA==?=

    #2
    Re: could you do this with a gridview

    Thanks for the responses, so sounds like using a table webcontrol would be
    easier to impliment! I have used the simple html tables to organize control
    placement on a web form but have not used the table web control, guessing
    there are plenty of code samples available.
    --
    Paul G
    Software engineer.


    "Stan" wrote:
    check out this code sample at ASPNet101.com:http://www.aspnet101.com/aspnet101/a...px?code=gvfull...
    >
    Quite fascinating!
    >
    However the GridView in the sample has to be supplemented with so much
    code (in an effort to override its normal behaviour) that it becomes
    questionable as to whether the use of such control is worth it. You
    might as well construct an ordinary table adding rows and cells whilst
    iterating through a database table. That way you can do exactly what
    you like and have complete control over all events with behaviours,
    binding expressions and procedures of unlimited complexity.
    >

    Comment

    Working...