Skip to main content

Posts

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 maintain or retain tabs in same tab after button click events or postback?" using JQuery in ASP.NET C#

In this post I'll share an details about " How to maintain or retain tabs in same tab after button click events or postback? " Step 1: you need to download Jquery and JQueryUI Javascript libraries from this site http://jqueryui.com/ Step 2: As usually you can create ASP.NET website from Visual Studio IDE and add Jquery and JqueryUI plugins in the header section of aspx page. Step 3: Add HiddenField control inside aspx page which is very useful to retain tab in same page Step 4: Use the HiddenField ID in Jquery code to indicate that CurrentTab Index Step 5: In code Behind, using Enumerations concept give the tab index values as user defined variable  Step 6: Use the Enum values in every Button click events on different tabs to check that tab could be retained in the same tab Further, Here I'll give the code details and snap shot pictures, 1. Default.aspx: Design Page First Second Third ...

Demo Video 2 : My Innovation "Three Dimensional Arithmetic Progression"

Demo Video 1 : My Innovation Two Dimensional A.P Arithematic Progression

Finding How many same values in the Nth order Power of Number's Series

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"> ...