Καλώς ορίσατε στο dotNETZone.gr - Σύνδεση | Εγγραφή | Βοήθεια

Dot Net Rules

Yes, to dance beneath the diamond sky with one hand waving free

Ιστορικό Δημοσιεύσεων

Παρουσίαση με Ετικέτες

Όλες οι Ετικέτε... » C#   (RSS)
Display data from a database with WebMatrix and asp.net web pages
In this post I would like to show a hands on example on how to get data back from a database using web pages with WebMatrix. If you want to find more information about WebMatrix,web pages and Razor syntax have a look in this older post of mine . The main...(read more)
Posted: Σάββατο, 6 Αυγούστου 2011 8:59 μμ από nikolaosk | 0 σχόλια
Δημοσίευση στην κατηγορία: , , ,
A simple tutorial on ASP.Net Dynamic Data with Visual Studio 2010 and JQuery
In this post I would like to talk about ASP.Net Dynamic Data . ASP.Net Dynamic Data is a feature that has been released in ASP.Net 3.5.I know a lot of ASP.Net developers that have never used it. Well, one thing I can say is that it can save us a lot of...(read more)
Introduction to ASP.Net Ajax controls
This is going to be my first post on Ajax (Asynchronous Javascript and XML) and Ajax controls. Ajax is my favourite technology and I use it a lot when I build ASP.Net applications. This is going to be a beginner's level post on Ajax in ASP.Net applications...(read more)
Enhancing performance in Entity Framework applications by precompiling LINQ to Entities queries
This is going to be the tenth post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here , the second one here , the third one here , the fourth one...(read more)
Lazy Loading,Eager Loading,Explicit Loading in Entity Framework 4
This is going to be the ninth post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here , the second one here , the third one here , the fourth one...(read more)
Data binding in an ASP.Net application with Entity Framework
This is going to be the eighth post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here , the second one here , the third one here , the fourth one...(read more)
Identity Map Pattern and the Entity Framework
This is going to be the seventh post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here , the second one here and the third one here , the fourth...(read more)
How to handle concurrency in Entity Framework
This is going to be the fifth post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here , the second one here and the third one here . You can read...(read more)
Reading data from an Entity Framework data model through a WCF Data Service
This is going to be the fourth post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here , the second one here and the third one here . I have a post...(read more)
Building a simple ASP.Net application using the Entity Data Model
This is going to be the first post of a series of posts regarding ASP.Net and Entity Framework and how we can use Entity Framework to access the database. We will start with some simple samples but then we will look into more advanced uses of Entity Framework...(read more)
Data caching in ASP.Net applications
In this post I will continue my series of posts on caching. You can read my other post in Output caching here .You can read on how to cache a page depending on the user's browser language. Output caching has its place as a caching mechanism. But right...(read more)
Using the Items collection for state management
I have explained some of the state mechanisms that we have in our disposal for preserving state in ASP.Net applications in various posts in this blog. You can have a look at this post , this post , this post and this one .My last post was on Application...(read more)
State management using the Application class in ASP.Net applications
I have explained some of the state mechanisms that we have in our disposal for preserving state in ASP.Net applications in various posts in this blog. You can have a look at this post , this post , this post and this one . I have not presented yet an...(read more)
Membership in ASP.Net applications - part 4
This is the fourth post in a series of posts regarding ASP.Net built in membership functionality,providers,controls. You can read the first one here . You can read the second post here . You can read the third post here . In this post I will show you...(read more)
Displaying XML data using XSLT transformations in an ASP.Net site
In this post, I will try to show you how to display xml data in asp.net website after making some xslt transformations. You will need to know a few things about XSLT. The best place to find out about XSLT is this link . I am going to explain a few things...(read more)
An abundance of LINQ queries and expressions using both the query and method syntax.
In this post I will be writing LINQ queries against an array of strings, an array of integers.Moreover I will be using LINQ to query an SQL Server database. I can use LINQ against arrays since the array of strings/integers implement the IENumerable interface...(read more)
Creating a Data Access Layer in ASP.Net applications for inserting,selecting,deleting and updating data
In this post I will be continuing my series of posts regarding data access methodologies/technologies that as I call them are pro ORM . I will be demonstrating how to use the connected and the disconnected data access models to retrieve,insert,update...(read more)
A simple example on achieving polymorphism in ASP.Net application part 3
In this post we will continue exploring the meaning of Polymorphism and the various ways we can implement Polymorphism in ASP.Net applications. In this post I demonstrated how to use Polymorphism through Inheritance and base instance classes. In this...(read more)
A simple example on achieving polymorphism in ASP.Net application part 2
In this post we will continue exploring the meaning of Polymorphism and the various ways we can implement Polymorphism in ASP.Net applications. In my previous post I demonstrated how to use Polymorphism through Inheritance and base instance classes. In...(read more)
A simple example on achieving polymorphism in ASP.Net application part 1
In one of my ASP.Net seminars I have been asked to give an example of the possible ways we can achieve Polymorphism in our ASP.Net applications. So I have decided to write a simple ASP.Net application that demonstrates the use of Polymorphism . I assume...(read more)
The chart web server control
In this post I am going to present a hands on example on how to use the Chart web server control. It is built into ASP.Net 4.0 and it is available from the Toolbox in VS 2010.It is a very rich feature control that supports many chart types, had support...(read more)
ASP.Net validation controls
In this post I would like to continue talking about validation in ASP.Net applications. I will look into the validation controls that ASP.Net provides. You can have a look at the first post in my blog regarding validation. You will show you that we can...(read more)
A simple example of validation in ASP.Net applications
I am going to start a new series of posts and I am going to cover in depth all the validation mechanisms/techniques/controls we have available in our ASP.Net applications. As many of you may know, I am a Microsoft Certified Trainer and I will present...(read more)
Routing in ASP.Net 4.0 Web Forms
In this blog post I would like to talk about a new ASP.Net 4.0 feature, URL Routing . I know this issue has been explained from various people on the web but I will give my own example. We could implement routing since ASP.Net 3.5 SP1 but it was there...(read more)
Posted: Δευτέρα, 3 Ιανουαρίου 2011 2:15 μμ από nikolaosk | 0 σχόλια
Δημοσίευση στην κατηγορία: , , , ,
Retrieve data from an ASP.Net application using Ado.Net 2.0 disconnected model
This is the second post in a series of posts regarding to ADO.Net 2.0. Have a look at the first post if you like. In this post I am going to investigate the "Disconnected" model. When I say "Disconnected" I mean Datasets . Datasets are in memory representations...(read more)
Περισσότερες Δημοσιεύσεις « Προηγούμενη - Επόμενη »