24 lines
479 B
C#
24 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace PirmasWeb
|
|
{
|
|
public partial class Forma1 : Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
protected void Button1_Click(object sender, EventArgs e)
|
|
{
|
|
Label1.Text = "Labas " + TextBox1.Text + "!";
|
|
TextBox1.Visible = false;
|
|
}
|
|
}
|
|
}
|