06 2012 档案
摘要:officialwebsitehttp://knockoutjs.com/Cascading drop down with knockoutjs and ASP.NET MVChttp://www.dotnetexpertguide.com/2012/06/cascading-dropdown-knockoutjs-aspnet.htmlhttp://www.cnblogs.com/rubylouvre/archive/2012/06/17/2551907.htmlhttp://www.cnblogs.com/n-pei/archive/2011/12/23/2299217.html
阅读全文
摘要:http://www.pluralsight-training.net/microsoft/?utm_source=microsoft&utm_medium=sponsored-page&utm_content=mvc3-fundamentals&utm_campaign=microsoft-sponsored-course
阅读全文
摘要:http://www.telerik.com/campaigns/aspnet-ajax/developer-controls.aspx?utm_source=asp.net&utm_medium=banner&utm_campaign=AJAX_120x90_landingpage_may10http://www.infragistics.com/dotnet/netadvantage/reportingoverview.aspxhttp://devexpress.com/http://www.gcpowertools.com/products/SpreadNEThttp:/
阅读全文
摘要:http://www.asp.net/web-pages/overview/whats-new/whats-new-in-aspnet-45-and-visual-web-developer-11-developer-preview
阅读全文
摘要:http://msdn.microsoft.com/en-us/library/szatc41e(v=vs.110).aspx
阅读全文
摘要:http://msdn.microsoft.com/en-us/library/ms171868(v=VS.110).aspx#parallel
阅读全文
摘要:Parallel programing with .nethttp://blogs.msdn.com/b/pfxteam/archive/2011/09/17/10212961.aspxThread Synchronization (C# and Visual Basic)http://msdn.microsoft.com/en-us/library/ms173179.aspx
阅读全文
摘要:mvc是一种架构模式三层架构也是一种架构模式两种模式碰在一起比较,或者结合是什么样的呢?原来是这个样子,随意画的图,欢迎指正。
阅读全文
摘要:http://turnjs.com/http://lesscss.org/http://requirejs.org/http://backbonejs.org/http://zt.cnblogs.com/wijmo/http://www.dotlesscss.org/
阅读全文
摘要:Log message Request and Response in ASP.NET WebAPIBy logging both incoming and outgoing messages for services can be useful in many scenarios, such as debugging, tracing, inspection and helping customers with request problems etc. I have a customer that need to have both incoming and outgoing mess..
阅读全文
摘要:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Runtime.InteropServices;//必要引用usingSystem.Security.Principal;//必要引用publicpartialclasstrad_in_user_login:System.Web.UI.Page{protectedvoidPage_Load(objectsender,Ev
阅读全文
摘要:触发器可能会导致ef无法正常工作,产生下面的错误:此时修改触发器为:CREATETRIGGER[dbo].[CreateTradeOrdNo]ON[dbo].[trade_Order]forINSERT--,update,deleteASBEGINselect*frominserted--加上这一句ENDThe member with identity '' does not exist in the member collection.Parameter name: identityDescription: An unhandled exception occurred du
阅读全文
摘要:CrystalReportSource1.ReportDocument.Subreports["INV002.rpt"].SetDataSource(ds.Tables["dt21"]);CrystalReportSource1.ReportDocument.SetDataSource(ds.Tables["dt2"]);CrystalReportViewer1.ReportSource=CrystalReportSource1;CrystalReportSource1.DataBind();
阅读全文
摘要:DimrptAsNewReportDocumentDimDirPathAsString=Application.StartupPath&"\"DimDataSet1AsDataSetDataSet1=NewXsd_InvoiceDataSet1.Tables("Students").Merge(Invoice.INVOICE_GetStudentInfo_One_(FamilyID))DataSet1.Tables("tblStudentPaymentInvoice").Merge(Invoice.INVOICE_GetStu
阅读全文
摘要:DataTabledt=newDataTable();dt.TableName="DataTable1";dt.Columns.Add("id");dt.Columns.Add("DESCRIPTION");dt.Columns.Add("QUANTITY");dt.Columns.Add("UNITPRICE");dt.Columns.Add("HandWorkPrice");DataTabledtOrder=newDataTable();dtOrder.TableName
阅读全文