Xamarin, benim gibi Microsoft developerlar için günümüzün popüler ihtiyacı mobil yazlımlar için başka bir yazılım dilini örneğin Objective-C ,Swift ,Java (gerçi ben eskiden senior java developer dım) öğrenmeye gerek kalmadan NET ile iOS ve Android için modern ve performanslı uygulamalar oluşturmaya yönelik açık kaynaklı bir platformdur. Xamarin ilegeliştiricilerin tüm iş mantığını tek bir dilde yazmasına (veya mevcut uygulama kodunu yeniden kullanmasına), ancak her platformda yerel performans, g [...]
Read MoreASPX<dx:ASPxTextBox ID="txtSozNo" runat="server" Width="100%" ClientInstanceName="ttxtSozNo"><ClientSideEvents KeyPress="function(s,e){ fn_AllowonlyNumeric(s,e);}" /> </dx:ASPxTextBox> javascriptfunction fn_AllowonlyNumeric(s, e) { var theEvent = e.htmlEvent || window.event; var key = theEvent.keyCode || theEvent.which; [...]
Read MoreSolution EnableCallBacks="False"
Read MoreSolution add to pproject global.asax protected void Application_Error(object sender, EventArgs e) { //We save the error information to a file named Error.txt StreamWriter sw = new StreamWriter(Server.MapPath("~/error.txt"), true); sw.WriteLine(DateTime.Now.ToString()); //Server nesnesini GetLastError metodu sunucuda oluşan son hatayı Exception tipinden getirir. Bu da şu an oluşan hata olacaktır if (Server.GetLastError().InnerException != null) sw.WriteLine(Server.GetLastError().InnerException.Me [...]
Read Moreconfiguration> <system.web> <sessionState timeout="40"></sessionState> </system.web> </configuration>
Read More<SettingsText ConfirmDelete ="<%$ Resources:Resource1, DeleteMessage %>"/>
Read Morestring PageName = (string)GetGlobalResourceObject("Resource1", "ProgrammeGroups");
Read Moreforeach (RadComboBoxItem x in RadComboLang.Items) { if (x.Value != null) { string y = x.Value; x.ImageUrl = "~/Flags/" + x.Value.ToString().Trim() + ".png"; } } }
Read Moreif (cmbProje.Items.Count > 0) OnClearSelection(cmbProje); protected void OnClearSelection(RadComboBox cmb) { cmb.Text = null; cmb.SelectedValue = null; cmb.Items.Clear; cmb.ClearSelection(); cmb.SelectedIndex = -1; }
Read MoreKeyFieldName="ID" must be unique
Read More