.NET FAQs Unleashed!
Skip Navigation Links
Interview questions on Design Patterns in .NET
ASP.NET Ajax Interview Questions
Interview questions related to security
C# Interview Questions
ASP.NET Interview Questions
Interview Questions in ASP.NET 2.0
Articles at dotnetuncle.com
Skip Navigation Links
OOPs questions in .NET
Questions on .NET Framework
ADO.NET Interview Questions
Short Answer questions in .NET
Frequently asked differences in .NET
Important commonly used Acronyms in .NET
MS SQL, Oracle SQL Interview Questions
 
    
Dotnetuncle's Tip:

  There are two key ways to find the data type of a variable. 1) GetType method. For ex: int I = 2; Then i.GetType().Name will display int. 2) use the typeof operator. Ex: typeof(i) will return int.

    

Can we bind data to a server control without writing code in .NET?

Yes, that is possible. ASP.NET 2.0 has the feature of declarative solution for data binding which requires no code at all for the most common data scenarios, such as:
* Selecting and displaying
* Data Sorting
* Paging and Caching
* Data Updating
* Inserting and Deleting Data


Bind data to a server control without writing code   Masterpage ContentPage   Nested Masterpage?   SiteMapPath control   Sort GridView   Hotspot class, ImageMap   Update Delete Gridview, Datakeynames  


    
Dotnetuncle's Tip:

  A .dll file is an assembly file without a point of entry. A .dll is invoked only when it is referenced.