DAY - 18-06-2025 l HOW TO ACCESS HTML CONTROL INSIDE DOTNET FRAMEWORK ? (DATAHTML.ASPX) < asp : Button ID ="Button1" runat ="server" Text ="DISPLAY" OnClick ="Button1_Click" /> < input type ="text" id ="T1" runat ="server" /> string msg = Request.Form[ "T1" ]; // here this from is now has element of html so we are using [] bracket Response.Write(msg); l Date time conversion:- For this concept we have to use culture info library. // create date time object DateTime dt = DateTime.ParseExact(TextBox1.Text, "yyyy-MM-dd" , System.Globalization.CultureInfo.InvariantCulture); // parseexact use to convert date ...