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

Dot Net Rules

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

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

Φεβρουάριος 2011 - Δημοσιεύσεις

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)
Membership in ASP.Net applications - part 3
This is the third post in a series of posts regarding ASP.Net built in membership functionality,providers,controls. You can read the first one post one here . You can read the second post here . In this post I would like to investigate how to use the...(read more)
Posted: Παρασκευή, 11 Φεβρουαρίου 2011 8:05 μμ από nikolaosk | 0 σχόλια
Δημοσίευση στην κατηγορία:
Membership in ASP.Net applications - part 2
This is the second post in a series of posts regarding ASP.Net built in membership functionality,providers,controls. You can read the first one post one here . In order to follow this post, complete the steps in the first post. It will only take 10 minutes...(read more)
Membership in ASP.Net applications - part 1
So far in all my posts, I have never mentioned anything about how to implement authentication/authorisation mechanisms in a web site. In all our professional web applications we do need some sort of mechanism to verify who are users are and what privileges...(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)
ASP.Net performance counters
I was involved in designing and implementing an ASP.Net application some time ago. After we deployed the application we wanted to monitor various aspects of the application. We can use the Performance Monitor. In my windows Server 2008 machine, I go to...(read more)
How to create selectable themes in your ASP.Net applications
In this post I am going to show you something that we see in most websites. When we visit a website we are given the choice through a control to select the theme(colors,font size,font family) that we want to be applied to the site. In almost all asp.net...(read more)
Creating a simple RSS reader using ListView,XMLDatasource,DataPager web server controls
In my last ASP.Net seminar someone noticed that we did not talk at all about the XmlDataSource,ListView,DataPager web server controls. It is rather impossible to investigate/talk about all issues regarding ASP.Net in a seminar but I promised to write...(read more)
Extending web server controls by providing client side functionality through Javascript
In this post I will demonstrate how to extend the functionality of the web server controls by adding client side functionality with Javascript. Let's move on to our example. 1) Launch Visual Studio 2010/2008/2005. (express editions will work fine). Create...(read more)
How to access HTML elements from server side code in an asp.net website
In this post I will demonstrate with a hands on example how HTML elements in an .aspx page can be processed exactly like standard ASP.Net server controls. Basically how to make them accessible from server side code. 1) Launch Visual Studio 2010/2008/2005...(read more)
How to profile LINQ to Entities queries in your asp.net applications - part 3
In this post I will continue exploring ways on how to profile database activity when using the Entity Framework as the data access layer in our applications. If you want to read the first post of the series click here . If you want to read the second...(read more)