Showing posts from October, 2012
In this web Programming tutorial we will learn that how we can go back from Current web page to previous one by clicking on the HTML button.
In this web Programming tutorial we will learn that how we can add Printing functionality on our web page using javascript in a asp.net or simple html page. see the below code and just copy and paste it. Code to use in HTML part you want to prin…
In this web-healer.blogspot.com 's web programming tutorial we will learn that how we can Restart our computer by clicking on a button from our website. So below is the dream code just copy and paste it. and use it in your button's onClick ev…
In this web-healer.blogspot.com 's web programming tutorial we will learn that how we can shutdown our computer by clicking on a button from our website. So below is the dream code just copy and paste it. and use it in your button's onClick e…
In this web-healer.blogspot.com 's web programming tutorial we will learn that how we can show simple date and time on our web page in asp.net using c#. just copy and paste the below code. if (!Page.IsPostBack) { lbl_date.T…
In this web programming tutorial we will learn that how we can call a javascript function from server side in asp.net using c#. see the below simple code in which we are trying to call a radiobutton click event that is defined in Client side, but we …
In this web programming tutorial we will learn that how we can import our Gridview data into excel file by click on a link button from our webpage in asp.net using c#. protected void LinkButton1_Click(object sender, EventArgs e) { Resp…
In this simple web Programming tutorial we will learn that how we can clear all Controls available in a gridview by just one click instead clearing one by one. like as we clear a form's text fields or other form elements. just copy the below code…
In this simple web programming tutorial we will learn that how we can define a Session as string in asp.net using C# to assign it to a string veriable. see the written below code and just copy and paste it. string data = Session["Data_var&q…
In this web Programming tutorial we will learn that how we can find or access a control like label, Dropdown, radiobutton, textbox etc from a previous page and its value to use in current page from gridview in asp.net using c#. See the below code an…
In this programming Tutorial we will learn that how we can format amount string into money. below is the code just copy and paste and use it. string charges = "125.35"; lbl_charges_total.Text = string.Format("{0:###,###,##0.00}&quo…
In this web programming tutorial we will learn how we can add new column in a Gridview when there is no record and we want to show a proper message that there is no data against particular search in asp.net using c#. see the below code and copy and p…