dbteq

Stories submitted by dbteq

Caching in ASP.NET(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article discusses Caching, its different types and contains some lucid code examples to illustrate On-Demand Data Caching. Caching is a feature of ASP.NET that can dramatically improve the performance of web applications by minimizing the usage of server resources to a great extent. Caching is a feature that stores data in local memory, allowing incoming requests to be served from memory directly. read more...

add a comment |category: |Views: 8

tags: another

Using SharePoint Web Services to Change Subsite Permissions(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

Microsoft has provided SharePoint class libraries and web services for not only creating and updating a SharePoint site and its contents manually, but also programmatically. This article introduces how to use SharePoint web services to loop through all the sub sites to add roles, add users to site roles, and update role permissions on site and list levels. read more...

add a comment |category: |Views: 40

tags: another

Constructors in C#(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article covers the basic concepts of constructors in C# and discusses constructor overloading, types of constructors, and the behavior of constructors in inheritance, with some sample programs. A constructor is used to provide initialization code that gets executed every time the class is instantiated. Constructors cannot be "virtual". A good understanding of constructors is a prerequisite for all class designers. read more...

add a comment |category: |Views: 4

tags: another

Constructors in C#(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article covers the basic concepts of constructors in C# and discusses constructor overloading, types of constructors, and the behavior of constructors in inheritance, with some sample programs. A constructor is used to provide initialization code that gets executed every time the class is instantiated. Constructors cannot be "virtual". A good understanding of constructors is a prerequisite for all class designers. read more...

add a comment |category: |Views: 0

tags: another

Attributes and Reflection in C# (aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article discusses attributes and reflection concepts in detail with examples wherever necessary. C# is very important language, but it also offers scope for adding declarative features to the code and their later retrieval if necessary. We can use attributes to provide both design-level and run-time information to our code. Attributes are a mechanism for adding metadata. Reflection is the process by which a program can read its own metadata. read more...

add a comment |category: |Views: 16

tags: another

How to Create a BoundField Dynamically Using GridView(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article examines how to create a BoundField Column dynamically for a GridView control. The manifestation shows the ListBox populated with Column Names from a specific table. Selecting multiple column names from the ListBox will allow the user to display the data in the GridView accordingly. read more...

add a comment |category: |Views: 39

tags: another

Microsoft .NET Architecture(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

In this article, essential aspects of Microsoft .NET such as CLR, MSIL, ASP.NET, ADO.NET, Web Services and .Net security are summarized. While no topic is covered in detail, and few implementation suggestions are given, the article serves as a quick overview of essential .NET concepts. read more...

add a comment |category: |Views: 0

tags: another

RSS Feed Generator by Peter A. Bromberg(eggheadcafe.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

A Dynamic Sql-Based Self-Caching RSS Feed Generator has become so omnipresent that it is expected for virtually any kind of information site to offer at least one feed. There are now a large number of RSS Generator class libraries in the open – source space. This article details an RSS Fed generator written by Peter A. Bromberg. The generator operates as a HTTPHandler, without the baggage of the ASP.NET Page class. read more...

add a comment |category: |Views: 9

tags: another

Trio of notable authors Introduces "Beginning .NET Game Programming"(dotnet.sys-con.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article describes a book, written by a trio of notable authors David Weller, Alexandre Santos Laboa, and Ellen Hatton. The book introduces the reader to a variety of fundamental concepts that go into programming a game. Every section of the book is accompanied by several source code listings that demonstrate the concept at hand. This book is relevant to both .NET 2.0 as well as .NET 1.1. read more...

add a comment |category: |Views: 1

tags: another