Skip to main content

Posts

Showing posts with the label C#

Auto Calculation in Textbox textchanged event in ASP.NET C#

Screen Shot Coding 1. Design Coding Sample Text Change Event for Auto-Calculations Auto Calculations                                                                          Press Tab here to generate auto calculate values 2. Code Behind using System; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void TextBox2_TextChanged(object sender, EventArgs e) { if (TextBox1.Text == " ") { TextBox1.Text = "Enter Some values here"; } else {...

How to Hide Gridview and Show the selected gridview row details in Form View using ASP.NET C#

In this post I'm going to post details about how to hide full Gridview by selecting individual gridview row and show that gridview row details in Formview; In this example, I'm using AdventureWorks Database and datebase table name HumanResources.Employee Click here to Download AdventureWorks Database   Here I'll post the code and snapshot details  1. Design View Add connection string code in web.config as below : 2.Design View's Source code in Default.aspx Untitled Page " SelectCommand="SELECT * FROM HumanResources.Department WHERE DepartmentID=@DepartmentID"> ...