share

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



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

Design Webform as shown below
Default.aspx 


Default.aspx.cs  

web.config  

Create table User_details

Stored Procedure



Script File


Out Put

Posted on 1:45 AM by devendar

No comments

Monday, September 8, 2014


1) Open Visual studio
2)  Create New Website  (Shift+Alt+N)
3) Right click on Solution Explorer select Add new item (Ctrl+Shift+A)
4) Choose New Webform
5) Select Toolbox from view Tab (Ctrl+Alt+X)
6) Select Data Tab From Toolbox
7) Drag And Drop Gridview control to Webform

 Create demo table in Microsoft SQL Server
Demo.sql

 
Default.aspx

Default.aspx.cs

Web.config
Out put
 

Posted on 10:16 PM 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


Debug mode and Release mode are different configurations for building your .Net project. Programmers generally use the Debug mode for debugging step by step their .Net project and select the Release mode for the final build of Assembly file (.dll or .exe).

 The Debug mode does not optimize the binary it produces because the relationship between source code and generated instructions is more complex. This allows breakpoints to be set accurately and allows a programmer to step through the code one line at a time. The Debug configuration of your program is compiled with full symbolic debug information which help the debugger figure out where it is in the source code.

Posted on 3:36 AM by devendar

No comments