|
|
|
|
|
| | Total Hits: 6 | Today: 0 | Author: Christopher R Davis | Rating:  |
| |  The nHydrate code generation platform is discussed in numerous articles on CodeProject.com but they focus more on what it is and how it works. This article will deep dive into how to use one specific generator: the ADO.NET data access layer. Do not let the length of this article fool you. It really is very simple syntax and usage. I just outline a lot of stuff you can do. This is a very useful generative template. A lot has been made lately of Microsoft's new foray into generation technologies w... |
| | Total Hits: 55 | Today: 0 | Author: Mohammad Azam | Rating:  |
| |  In this video Mohammad Azam demonstrates how to generate code using the Text Template Transformation Toolkit. [4:07]... |
| | Total Hits: 55 | Today: 0 | Author: Dino Esposito | Rating:  |
| |  Sometimes you need more than just static images on your Web site—you may want to create images dynamically. Thanks to GDI+, ASP.NET 1.x makes it easy to generate images programmatically. The ASP.NET infrastructure can output images read from a source file, and can also retouch them in memory before outputting them. While this gives programmers enough power to build effective one-off solutions, it requires them to reinvent the wheel every time a new system is needed.... |
| | Total Hits: 65 | Today: 0 | Author: Mike Downen | Rating:  |
| |  Security in the Microsoft® .NET Framework encompasses many technologies: role-based security in the base class libraries (BCL) and in ASP.NET, cryptography classes in the BCL, and new support for using access control lists (ACLs) are just a few examples. One of the technologies in the .NET security spectrum provided by the common language runtime (CLR) is code access security (CAS). This article discusses the role of CAS in .NET security and some key new features and changes in CAS in the .NET F... |
| | Total Hits: 202 | Today: 0 | Author: Manish Dwivedi | Rating:  |
| |  Impersonation is the process of executing code in the context of another user identity. By default, all ASP.NET code is executed using a fixed machine-specific account. To execute code using another identity we can use the built-in impersonation capabilities of ASP.NET. We can use a predefined user account or user's identity, if the user has already been authenticated using a windows account.... |
| | Total Hits: 90 | Today: 0 | Author: Tod Golding | Rating:  |
| |  So much attention gets paid to the new generic classes that have been introduced with .NET generics, I often find developers overlooking what can be achieved through the use of generic methods. In fact, in many cases, you may discover one of the first opportunities to leverage generics is by introducing some generic methods into your non-generic types. This brings the flavor and power of generics to a class without requiring the class itself to be parameterized.... |
| | Total Hits: 153 | Today: 0 | Author: weblogs.asp.net | Rating:  |
| |  At Lambda the Ultimate it doesn't seem to be much enthusiasm about the new partial type construct in C#. Microsoft is introducing this new feature to enable separation of classes to separate files, thus simplyfing code-generation. If you think about it, this should prove to make development of asp.net webforms (among other things) a lot cleaner. Take the entire contents of your InitializeComponent method and generate+compile it into your partial class at buildtime based on the tags in you... |
| | Total Hits: 5 | Today: 0 | Author: Christopher R Davis | Rating:  |
| |  The nHydrate ORM platform is a useful tool for creating data frameworks, inversion of control, and performing other programmatic tasks. However many generators have been added over the last year and the UI itself has become confusing. At last count there were 14 different generators. Most people only use one or two, so the rest are just clouding up the generative UI.... |
| | Total Hits: 4 | Today: 0 | Author: Brij | Rating:  |
| |  From the past few days, I started exploring ASP.NET 4.0 webforms enhancement. I really found some exciting enhancements in ASP.NET 4.0 and am sure, this is all going to be make web development simple and will provide more flexibility to us. So I started picking the most exciting features of ASP.NET 4.0 one by one. Earlier, I wrote on URL Routing, you can go through to the link given below:
* URL Routing with ASP.NET 4.0 [^]... |
| | Total Hits: 4 | Today: 0 | Author: Satheesh babu | Rating:  |
| |  Storing images in database BLOB field and displaying it on aspx page is one of the common tasks we do in asp.net projects. Asp.Net itself does not have an in build control to bind the image stored in database. To display an image stored in database, we will write an HttpHandler which will fetch the image from database and do a binary write. We all know that doing a binary write will become cumbersome when the number of images increases and the number of users becomes high. This week Microsoft h... |
| | Total Hits: 0 | Today: 0 | Author: Dino Esposito | Rating:  |
| |  Sometimes you need more than just static images on your Web site—you may want to create images dynamically. Thanks to GDI+, ASP.NET 1.x makes it easy to generate images programmatically. The ASP.NET infrastructure can output images read from a source file, and can also retouch them in memory before outputting them. While this gives programmers enough power to build effective one-off solutions, it requires them to reinvent the wheel every time a new system is needed.... |
| | Total Hits: 0 | Today: 0 | Author: Vinayaka Krishna Shenoy | Rating:  |
| |  This utility programme will help to generate the ready made compilable class files in c# based on the Connection string provided at the App.config file.... |
| | Total Hits: 42 | Today: 0 | Author: Peter Ashley | Rating:  |
| |  Code generation techniques using technologies such as XSLT are playing an increasingly important part in software projects as they support the development of a rapidly maintainable code base. This article discusses some of the benefits and possible applications of code generation.
To demonstrate these techniques the author develops a Web Forms application that supports the maintenance of records in a SQL Server database, using the database's own metadata to drive the generation process. T... |
| | Total Hits: 37 | Today: 0 | Author: Jason Clark | Rating:  |
| |  In the September 2003 installment of this column, I began a discussion of generics in the common language runtime (CLR). I introduced the concept of a generic type, covered the flexibility and code reuse that's afforded by generics, discussed performance and type safety, and presented the generics syntax in C# in a simple code sample. This month I'll dig deeper into the internal workings of the CLR with respect to generics. I'll cover type constraints, generic classes, methods, structures, and t... |
| | Total Hits: 46 | Today: 0 | Author: Keith Brown | Rating:  |
| |  The vast majority of managed applications run with full trust, but based on my experience teaching .NET security to developers with a broad range of experience, most really don't understand the implications of fully trusted code. So I've pulled together a number of examples where fully trusted code can skirt around common language runtime (CLR) security features, starting each with a question that seems to have an obvious answer.... |
| | Total Hits: 60 | Today: 0 | Author: Patrick Tisseghem | Rating:  |
| |  Explore Windows SharePoint Services solutions, solution architecture, and techniques for creating, deploying, maintaining, and upgrading Windows SharePoint Services solutions. This article is part 2 of 2.... |
| | Total Hits: 5 | Today: 0 | Author: John D. Cook | Rating:  |
| |  Random number generation is tricky business. Good random number generation algorithms are tricky to invent. Code implementing the algorithms is tricky to test. And code using random number generators is tricky to test. This article will describe SimpleRNG, a very simple random number generator. The generator uses a well-tested algorithm and is quite efficient. Because it is so simple, it is easy to drop into projects and easy to debug into.... |
| | Total Hits: 5 | Today: 0 | Author: Pman75 | Rating:  |
| |  I have been thinking of writing an article for a long time now. Why? I've been feeling a bit guilty lately since I have used allot of excellent code from here.... |
| | Total Hits: 5 | Today: 0 | Author: Asif Ahmed Khan | Rating:  |
| |  Every one has shortage of time , every one wants short cuts. Why don't we have (being developers) short cuts to developing database applications. This is what Dot NET Code Generator tries to give you. It generates full object oriented source code and even all the forms for you using 3 layer architecture .... |
| | Total Hits: 8 | Today: 0 | Author: Stevan Rodrigues | Rating:  |
| |  The 3-Tier Code Generator is a wonder tool that will help developers to code within minutes a simple module to add, update records in the table. At the same time it keeps the best practices and industry standards in mind. It exploits the object oriented features of .NET.... |
|
|
|
|
|
|
|
|
|
|
|
|
|