asp.net 4.0 in practice
... OutputCache 372 TECHNIQUE 86OutputCache and partial views 378 14. 4 Data caching techniques 381 TECHNIQUE 87Implementing data caching in ASP. NET 381 14. 5 Building custom cache providers 386 TECHNIQUE ... 102 UsiQuerying the database using ADO .NET 44 9 TECHNIQUE 103 Using stored procedures to query the database 45 2 TECHNIQUE 1 04 Persisting data into the database 45 3 TECHNIQUE 105 Writing XML 45 6 ... required. WEB. CONFIG MINIFICATION ASP. NET 4. 0 has a new web. config setting that minifies its content. You can include just the minimum required settings to load the application, using a specified .NET...
Ngày tải lên: 31/05/2014, 00:21
Xây dựng và ứng dụng thương mại điện tử trên nền công nghệ ASP NET 4 0 luận văn tốt nghiệp đại học
Ngày tải lên: 27/12/2013, 21:09
Apress introducing ASP.Net 4.0 with visual studio 2010_2 pptx
Ngày tải lên: 12/08/2014, 05:22
How To Get Web Site Thumbnail Image In ASP potx
... IntPtr.Zero); } Conclusion The article explains an easy way to generate thumbnail images of websites using new WebBrowser control in .NET framework 2 .0. Complete source code of the article can ... to the provided bitmap. Using WebBrowser control in ASP. NET 2 .0 So, we have a WebBrowser control which is a windows forms control (in namespace System.Windows.Forms) and can do the required job. ... Before .NET framework 2 .0 it was quite difficult to use a web browser in C# or VB .NET because we either have to use COM+ interoperability or third party controls which becomes headache later. WebBrowser...
Ngày tải lên: 18/06/2014, 18:20
Manning.Publications.ASP.Net.2.0.Web.Parts.in.Action.Building.Dynamic.Web.Portals.Oct.2006
... 33 Discovering the GenericWebPart control 34 2.3 Understanding the WebPart class 38 Using custom controls 38 ✦ Creating web parts with user controls 42 2 .4 Understanding web part internals 45 IWebPart ... 201 7.2 Supplying custom editing controls 202 Improving the FavoritesWebPart 203 7.3 Improving usability 2 14 Reducing mouse clicks 2 14 ✦ Creating a collapsible EditorZone 219 ✦ A finishing touch ... 293 10. 5 Introducing Live.com—a modern mega-portal 299 Personalizing the Live.com portal 300 ✦ MicrosoftGadgets.com—a repository of custom gadgets 301 ✦ Creating a custom Live.com gadget 302 10. 6...
Ngày tải lên: 15/11/2012, 14:24
Tài liệu Beginning ASP.NET 2.0 in VB 2005 From Novice to Professional ppt
... service technology. Chapter 22 shows how to create a basic web service and use it in a client. Chapter 23 shows you how to enhance your web service with caching, security, and transactions. Part ... about .NET programming, including Pro ASP. NET 2 .0 in C# 200 5 (Apress), Microsoft .NET Distributed Applications (Microsoft Press), Programming .NET Web Services (O’Reilly), and ASP. NET: The Complete ... and script code in order to program the Web. Instead, you can create full-scale web applications using nothing but code and a design tool such as Visual Studio 200 5. The cost of all this innovation is...
Ngày tải lên: 24/01/2014, 08:20
How to Create an Oracle9i Database in a UNIX Environment pdf
Ngày tải lên: 29/03/2014, 16:20
Web Service in .NET ppt
... Architecture ASP. NET Web Services ASP. NET Web Services Data Types Work in VS 200 5 ASP. NET Web Services Tips Demo Web Service with AJAX Microsoft ASP. NET AJAX Allow to call ASP. NET Web services ... QName) Work in VS 200 5 To make a Web Service Start a new web site (from Visual Studio 200 5); Select ASP. NET Web Service; Change source code of Service. cs file or add new web service file ... templates. service file from templates. To consume a Web Service Start a new web site (from Visual Studio 200 5); Select ASP. NET Web Site; Use WSDL.exe to create proxy class; Add to App_Code...
Ngày tải lên: 12/07/2014, 13:20
Beginning ASP.NET 2.0 E-Commerce in C# 2005 From Novice to Professional PHẦN 1 pdf
... you’ve convinced the client that you can create a cool web site to complement the client’s store activity, it’s time to stop celebrating and start thinking about how to put into practice all ... done using IIS. Darie-Watson _46 8 1C0 2.fm Page 27 Tuesday, September 20, 200 5 4: 51 AM 8213592a11 745 6a 3 40 854d18cee57 603 6 CHAPTER 1 ■ STARTING AN E-COMMERCE SITE Phase I: Getting a Site Up Chapters ... development Darie-Watson _46 8 1C0 1.fm Page 8 Tuesday, August 9, 200 5 3:51 AM 4 CHAPTER 1 STARTING AN E-COMMERCE SITE ã Getting customers: How will you get visitors to the site in the first place? ã Offering products:...
Ngày tải lên: 09/08/2014, 14:20
Beginning ASP.NET 2.0 E-Commerce in C# 2005 From Novice to Professional PHẦN 2 ppt
... connection object stored using the generic DbConnection reference: // Obtain a database specific connection object DbConnection conn = factory.CreateConnection(); So, in practice, the connection ... Obtain a database specific connection object DbConnection conn = factory.CreateConnection(); // Set the connection string conn.ConnectionString = connectionString; // Create a database specific ... the connection object DbConnection conn = factory.CreateConnection(); // Initialize the connection string conn.ConnectionString = " connection string "; // Create the command object...
Ngày tải lên: 09/08/2014, 14:20
Beginning ASP.NET 2.0 E-Commerce in C# 2005 From Novice to Professional PHẦN 3 docx
... like a tool for the CatalogAccess class, we chose to add it to CatalogAccess.cs. Add the DepartmentDetails class at the beginning of CatalogAccess.cs (but not inside the CatalogAccess class) ... readonly fields can be initialized only in the static class constructor, and instance readonly fields can be initialized only in the instance class constructor. Darie-Watson _46 8 1C 04 . fm Page 138 ... aliases: SELECT p.ProductID, p.Name FROM ProductCategory pc INNER JOIN Product p ON p.ProductID = pc.ProductID WHERE pc.CategoryID = 5 Showing Products Page by Page In case certain web sections need to...
Ngày tải lên: 09/08/2014, 14:20
Beginning ASP.NET 2.0 E-Commerce in C# 2005 From Novice to Professional PHẦN 4 ppt
... 19, 200 5 9:55 AM 8213592a11 745 6a 3 40 854d18cee57 603 CHAPTER 6 IMPROVING PERFORMANCE 207 ã VaryByCustom: Used to identity custom caching requirements. Its most popular value is “browser”, which ... DataList control in ProductsList.ascx and for the entire SearchBox.ascx control in the following exercise. Darie-Watson _46 8 1C0 6.fm Page 2 04 Wednesday, August 24, 200 5 7 :02 AM CHAPTER 8 ■ CATALOG ... http://aspnetresources. com/tools/pwdhash.aspx. For example, the hash value of the password “admin” using the SHA-1 algorithm is D033E22AE 348 AEB5660FC2 1 40 AEC3585 0C4 DA997. In the following example,...
Ngày tải lên: 09/08/2014, 14:20