Created
September 16, 2012 11:59
-
-
Save halit/3732133 to your computer and use it in GitHub Desktop.
multiro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| { | |
| string anasayfa_baslik; | |
| protected void Page_Load(object sender, EventArgs e) | |
| { | |
| PageTitle.Text = anasayfa_baslik; | |
| } | |
| protected void Button1_Click(object sender, EventArgs e) | |
| { | |
| PageTitle.Text = "ileri"; | |
| anasayfa_baslik = "ileri"; | |
| } | |
| protected void Button2_Click(object sender, EventArgs e) | |
| { | |
| PageTitle.Text = "sol"; | |
| anasayfa_baslik = "sol"; | |
| } | |
| protected void Button3_Click(object sender, EventArgs e) | |
| { | |
| PageTitle.Text = "sag"; | |
| anasayfa_baslik = "sag"; | |
| } | |
| protected void Button4_Click(object sender, EventArgs e) | |
| { | |
| PageTitle.Text = "geri"; | |
| anasayfa_baslik = "geri"; | |
| } | |
| protected void Button5_Click(object sender, EventArgs e) | |
| { | |
| PageTitle.Text = "dur"; | |
| anasayfa_baslik = "dur"; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment