Friday, 28 November 2014

how to hide desktop icon in windows 8

hello guys

Today i wil tell you how to hide your desktop icon In good manner



  1. Firstly you have need to click on this link

 v    click here for dowload Star dock


    2. after that install the downloaded software



    3. after installation you run this software it is

        three options show after installation
       
          Enter Product key
          purchase product key
           Free 30 day trial



   Now you have need to click on free 30 day trial now you have need to give your email id
  after that one email send to your given email id and you \have need to verify after varify you can use   stardock fences

 Thanks
     

how to make desktop look beautiful in windows 10

hello guys
Today i will tell you how to give cool look to your desktop

So friends following steps



  1. First go to

Rocket dock link
     2 you have need to download that software

     3. after download you have need to install this software

     4. Now you Desktop look like this








 
   
     Thanks




Thursday, 27 November 2014

how to send mail in a gmail with security with password protected

hello friends

Today i will tell you how to send a email with password requirement

you have need to follows some steps


  1. firstly go to web store of your browser
  2. you have need to download secure gmail 
  3. it is automatically install on your browser
  4. now you are easily send a mail with password. 



Friends i think it is good things for you it is very useful for sending sercure mail because if yoiu want to see a mail to you have need to put password first after that you mail is open


Thanks 

Saturday, 12 July 2014

how to open new page of website in asp.net

Hello friends
Today i will tell you how to open a page in asp.net
Assume that you have two page first one is loginpage.aspx
and second one is registration.aspx page
you are in login page and you want to open a registration.aspx page when you click on login.aspx
page on button click event
So write following code in login page Button Click Event
Response.Redirect(/~registration.aspx)



Thanks 

Tuesday, 1 July 2014

How to Design login page in Asp.Net

Hello Friends
Today i will teach you how to design log in page in Asp.net with sql connectivity

Asp.net Coding
...........................
protected void Button1_Click(object sender, EventArgs e)
    {
        bool flag = false;
        SqlConnection con = new SqlConnection("Data Source=NIIT-PC;Initial Catalog=School;Integrated Security=True");
        con.Open();
        SqlCommand com=new SqlCommand("select count (*) from Login where Username='"+TextBox1.Text+"'and password='"+TextBox2.Text+"'",con);
        flag = Convert.ToBoolean(com.ExecuteScalar());
        if (flag == true)
        {
            Response.Redirect("~/Register.aspx");
        }
        else
        {
            Label1.Text = "incorrect user name And Password";
        }
       
        con.Close();

    }

SQl Coding

Create database School
create table login(username nvarchar(30),password nvarchar(30))
insert into login values('chetan','ravi');


Thanks

Friday, 27 June 2014

What is Asp.net

ASP.NET is a set of Web development tools offered by Microsoft. Programs like Visual Studio .NET and Visual Web Developer allow Web developers to create dynamic websites using a visual interface. Of course, programmers can write their own code and scripts and incorporate it into ASP.NET websites as well. Though it often seen as a successor to Microsoft's ASP programming technology, ASP.NET also supports Visual Basic.NET, JScript .NET and open-source languages like Python and Perl.

Tuesday, 11 March 2014

How to link a other web page using html

hello friends

Today i will show you how to link a other web page in our page using link

First you have to write following code
<html>
<head>
<body>
<a href= "http://webdevelepmentindia.blogspot.in/"> My blog</a>
</p>This is link example</p>
</body>
</head>
</html>


With the help of this coding you will easily attach a link to any webpage


Thank you