share

Showing posts with label Sealed Clsasses in dot net. Show all posts
Showing posts with label Sealed Clsasses in dot net. Show all posts

Tuesday, September 9, 2014



1) Open Visual studio
2)  Open NewWebsite  (Shift+Alt+N)
3) Right click on Solution Explorer select Add new item (Ctrl+Shift+A)
4) Choose New Webform
Create User_details table
 

User_details.sql

 
Create Webform As shown Below:
 Search.aspx

 Search.aspx.cs

 web.config 
 Out-put 

Posted on 2:23 AM by devendar

No comments

Friday, September 5, 2014






GridView Control can be used to display multiple records in a tabular format.

GridView Control supports different type of customizations eg: sorting records in gridview, paging records in gridview, editing multiple records in gridview, deleting multiple records in gridview, Exporting records in gridview, importing records in gridview. etc.

Steps to inserting GridView Control into Webform

1) Open Visual studio

2)  Open New Website  (Shift+Alt+N)

3) Right click on Solution Explorer select Add new item (Ctrl+Shift+A)


5) Select Toolbox from view Tab (Ctrl+Alt+X)

6) Select Data Tab From Toolbox

7) Drag And Drop Gridview control to Webform
















Posted on 10:11 PM by devendar

No comments

1) Sealed is a key word
2) Sealed classes are not inheritable

    sealed class A{}
    class B:A{} leads to an error message

3) When ever a class is providing the complete Functionality as per the requirement, then it is recommended to declare the class as sealed.


 grid view, asp dot net, dotnet Materials ,

what are the sealed classes in c# dot net

Object-Oriented Programming Sealed Classes in C# Dot net

 uses of sealed keyword in C# dot net

 

 

Posted on 4:01 AM by devendar

No comments