ASP.NET Label’e Tarih-Saat Bilgilerini Yazdırma
Artık kendinizi hazır hissediyorsanız yavaştan yavaştan derslere girmeye başlayalım bugün basit bir şey yapıcaz.
Butona basınca labele tarih bilgilerimizi yazdırıyoruz.
Bu aspx.cs(C#) dosyamız:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class deneme : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void btn_Click(object sender, EventArgs e) { lbl.Text = DateTime.Now.ToString(); } }
Bu da aspx dosyamız:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ornek.aspx.cs" Inherits="ornek" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div style="height: 56px"> <asp:Label ID="lbl" runat="server" Text="Basarsan gözükür."></asp:Label><br /> <asp:Button ID="btn" runat="server" Height="30px" Text="Tıkla" Width="68px" onclick="btn_Click" /> </div> <p> </p> </form> </body> </html>
Buradan dosyayı indirebilirsiniz: Labele tarih saat yazdırma
Yorumlar
Burası çok boş... yorum bırakabilirsin!