0

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

Aan
  • 12,247
  • 36
  • 89
  • 150

2 Answers2

1

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

Ankur Sharma
  • 283
  • 2
  • 13
  • I know that fact about dynamic website and it is by no matter with my question. I am asking about the code that MS VS will generate when I do my development `Visually` by (drag, drop, insert ...etc.) there must be a generated code in the background of IDE. – Aan Nov 01 '13 at 09:24
0

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

Community
  • 1
  • 1
hbk
  • 10,908
  • 11
  • 91
  • 124