Aan
Aan

Reputation: 12920

Manipulating with GridView visually in Visual Studio

I am new in ASP.NET (C#), I tried to manipulate with GridView control, I bound it with Data Source graphically (as in the image NOT manually) with MS Visual Studio 2010 and projected some data in this GridView graphically as well. I would like to know where I can find the auto-generated code (C# and SQL) of all what I have done?

enter image description here

Upvotes: 0

Views: 234

Answers (2)

Ankur Sharma
Ankur Sharma

Reputation: 283

A dynamic data website generates pages at runtime and it is not some auto generated code by Visual Studio. A brief about it could be found here: http://www.codeproject.com/Articles/377291/An-Introduction-to-ASP-NET-Dynamic-Data-from-a-Beg

Upvotes: 1

hbk
hbk

Reputation: 11194

I i correctrly understand - you work with WinForms and add some elemets to youк form, now you want to see auto-generated code for added elements on form

Just expand tree with your form and select file NAME.Designer.cs

Maybe this Post or this Post can be helpfull for you

enter image description here

Upvotes: 0

Related Questions