gridview in vs2008

  • Thread starter Thread starter John
  • Start date Start date
John,

If you have a question about Visual Studio 2008 like you did it, you cannot
expect an answer, what is in your eyes an improvement can be in others eyes
a disapprovement.

To give a sample, the "with" statement is seen by classic VB users as
something good, I do not like it because of reading and maintenance. For me
it is only there because of backward compatiblity. (Please no discussion
about this, it is just to show my personal preference).

Beside that is in my opinion this newsgroup not the right place for your
question, like Armin wrote some days ago. The GridView is not a part of the
VB language but is used by the VB language. I think that this question would
be more in place in the newsgroup microsoft.public.dotnet.framework.aspnet.

Cor
 
Hi John,

Was that 2005 or 2008 ? If 2008 the answer is basically no. The thing is,
2008 ships with .NET 3.5. 3.5 is really 3.0 with added LINQ libraries and
a some other *added* types. 3.0 is really 2.0 with added WCF, WPF ,WF and
CardSpace.
So a .NET 3.5 app, VS 2008, still is using the same 2.0 libraries that
contain gridview et al. The only difference might be some bug fixes as you
might get with SP1 for 2.0 when that's released. So for gridview, 2008 will
be no different to 2005 because the libraries are not changing.
 
Back
Top