<%@ Page Language=\"C#\" AutoEventWireup=\"true\" CodeBehind=\"WebForm1.aspx.cs\" Inherits=\"WebApplication7.WebForm1\" %>\r\n\r\n<!DOCTYPE html>\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head runat=\"server\">\r\n <title></title>\r\n</head>\r\n<body>\r\n <form id=\"form1\" runat=\"server\">\r\n <div>\r\n \r\n </div>\r\n <asp:Button ID=\"Button1\" runat=\"server\" OnClick=\"Button1_Click\" Text=\"Button\" />\r\n <asp:TextBox ID=\"TextBox1\" runat=\"server\"></asp:TextBox>\r\n <asp:Label ID=\"Label1\" runat=\"server\" Text=\"Label\"></asp:Label>\r\n </form>\r\n</body>\r\n</html>\r\n
Code behind
using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Web;\r\nusing System.Web.UI;\r\nusing System.Web.UI.WebControls;\r\n\r\nnamespace WebApplication7\r\n{\r\n public partial class WebForm1 : System.Web.UI.Page\r\n { \r\n protected void Button1_Click(object sender, EventArgs e)\r\n {\r\n string kelime = TextBox1.Text;\r\n char[] harfler = kelime.ToCharArray(); \r\n Random rnd = new Random();\r\n Label1.Text = harfler[rnd.Next(0, harfler.Length)].ToString(); ;\r\n }\r\n }\r\n}
Fikir oluşturması açısından faydalı olacaktır.
","url":"https://uzmanim.net/soru/asp-net-web-form-uygulamasinda-rastgele-harf-uretme/27753#a27843","author":{"@type":"Person","name":"alattin"},"comment":[],"commentCount":0,"dateCreated":"2014-12-11T20:11:00.203+02:00","dateModified":"2014-12-11T20:11:00.203+02:00","text":"Web formları için sanırım şöyle bir örnekten bahsediyorsunuz
Webform1.aspx içeriği:
<%@ Page Language=\"C#\" AutoEventWireup=\"true\" CodeBehind=\"WebForm1.aspx.cs\" Inherits=\"WebApplication7.WebForm1\" %>\r\n\r\n<!DOCTYPE html>\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head runat=\"server\">\r\n <title></title>\r\n</head>\r\n<body>\r\n <form id=\"form1\" runat=\"server\">\r\n <div>\r\n \r\n </div>\r\n <asp:Button ID=\"Button1\" runat=\"server\" OnClick=\"Button1_Click\" Text=\"Button\" />\r\n <asp:TextBox ID=\"TextBox1\" runat=\"server\"></asp:TextBox>\r\n <asp:Label ID=\"Label1\" runat=\"server\" Text=\"Label\"></asp:Label>\r\n </form>\r\n</body>\r\n</html>\r\n
Code behind
using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Web;\r\nusing System.Web.UI;\r\nusing System.Web.UI.WebControls;\r\n\r\nnamespace WebApplication7\r\n{\r\n public partial class WebForm1 : System.Web.UI.Page\r\n { \r\n protected void Button1_Click(object sender, EventArgs e)\r\n {\r\n string kelime = TextBox1.Text;\r\n char[] harfler = kelime.ToCharArray(); \r\n Random rnd = new Random();\r\n Label1.Text = harfler[rnd.Next(0, harfler.Length)].ToString(); ;\r\n }\r\n }\r\n}
Fikir oluşturması açısından faydalı olacaktır.
","upvoteCount":0},{"@type":"Answer","name":"Soru güncellendi.
","url":"https://uzmanim.net/soru/asp-net-web-form-uygulamasinda-rastgele-harf-uretme/27753#a28059","author":{"@type":"Person","name":"musa075"},"comment":[],"commentCount":0,"dateCreated":"2014-12-14T12:35:21.657+02:00","dateModified":"2014-12-14T12:35:21.657+02:00","text":"Soru güncellendi.
","upvoteCount":0}],"upvoteCount":0}}Asp.net Web Form uygulamasında metin kutusuna metin girişi yapıldıktan sonra girilen metnin içerisinden rastgele harf üreten kodu yazar mısınız?
Dim, string, integer, for-next, mid, length, randomize, response write gibi kodlarla oluşturulmuş olması gerekiyor.
Toplam 2 cevap
Web formları için sanırım şöyle bir örnekten bahsediyorsunuz
Webform1.aspx içeriği:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication7.WebForm1" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> </div> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> </form> </body> </html>
Code behind
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebApplication7 { public partial class WebForm1 : System.Web.UI.Page { protected void Button1_Click(object sender, EventArgs e) { string kelime = TextBox1.Text; char[] harfler = kelime.ToCharArray(); Random rnd = new Random(); Label1.Text = harfler[rnd.Next(0, harfler.Length)].ToString(); ; } } }
Fikir oluşturması açısından faydalı olacaktır.