Tuesday, 24 March 2015

How to Override Method in C#.net


Hello  Friends,
 Now  I am going to describe  how to override the method  in C#.net.This is purely console application  of Dynamic or runtime polymorphism in C#  Application.So Please follow the following steps.
Step-1:                                                                                                                                                 Open Visual Studio Go to file menu  select  option “New” than Choose option “Project...”  like this snapshot.  

                                                                  

Sunday, 15 March 2015

How to save Uploaded file in the folded of Solution Exploer



Hello ,
            Friends  Now I am going to describe how to save uploaded file in the folder of Solution Exploer.
Please follow these steps.
Step-1:
Create a .aspx file of web application and design like this and follow up the following code.
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body style="width: 285px">
    <form id="form1" runat="server">
    <div>
   
        <asp:FileUpload ID="FileUpload1" runat="server" />
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Summit" />
        <br />
        <asp:Label ID="lblupload" runat="server" ForeColor="#FF33CC"></asp:Label>
   
    </div>
    </form>
</body>
</html>


Tuesday, 27 January 2015

How To Change Password in asp.net using C#



Hello Friends,
                         Now I am going to describe  how to Change Password in asp.net using C#  in  5 steps:
Step-1:
Create a login table and Insert  data  in this Table  like this:
 
Command of  sql  to  create above Table:
CREATE TABLE [dbo].[login] (
    [EmailId]  VARCHAR (50) NOT NULL,
    [Password] VARCHAR (50) NOT NULL
);

Tuesday, 6 January 2015

How to Create Simple Login Form With Use Of Validation in C# Using asp.net:



Hello Friends,
             Now I am Going to describe How to Create   Simple Login Form With Use Of  Validation  in C#  Using asp.net:
Step-1:
Create a login table and Insert  data  in this Table  like this:
Command of  sql  to  create above Table:
CREATE TABLE [dbo].[login] (
    [EmailId]  VARCHAR (50) NOT NULL,
    [Password] VARCHAR (50) NOT NULL
);