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

Dot Net Rules

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

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

Οκτώβριος 2010 - Δημοσιεύσεις

An example of Arrays,ArrayList,generic collections in an ASP.Net application
In one of my ASP.Net seminars I have been asked to provide a small sample/example on working with a group of custom objects. I have created a small example/site with ASP.Net & C# and thought it might be a good idea to share it with you. More specifically...(read more)
Posted: Παρασκευή, 22 Οκτωβρίου 2010 5:12 μμ από nikolaosk | 0 σχόλια
Δημοσίευση στην κατηγορία: , , ,
How to change the master page depending on the client’s browser
In one of my seminars on ASP.Net, I was asked a question from a student regarding master pages and the various browser appications. He basically asked if it was possible to have a different master page depending on the client’s browser. My initial answer was to find the browser’s version programmatically and according to this [...]

Διαβάστε περισσότερα »

How to use cookies in ASP.Net applications
In this post we are going to see a step by step example on how to read,write,delete cookies in asp.net websites. Cookies are small pieces of text that you can associate with a website which are transfered down to the user’s computer when the user visits the website. You can use any of the versions [...]

Διαβάστε περισσότερα »

Caching an ASP.Net page
The issue of “caching” keeps coming up in my asp.net seminars so I though it would be a good idea to write a post. I know it is a well documented feature and widely used but I really believe most people will be able to use this rather simple example and understand the concepts behind [...]

Διαβάστε περισσότερα »

Caching an asp.net page depending on the user’s browser language
This is my second post regarding caching in asp.net applications. A friend of mine asked me if he can control caching of an asp.net page depending on the user’s language browser. Let’s see how we can accomplish that with a step by step example. You can use any of the versions of Visual studio (VS [...]

Διαβάστε περισσότερα »

Linq to Objects in ASP.Net
In this post I would like to talk about Linq to Objects in an ASP.Net application. In all my classes people seem to have the following answer to this question, “What kind of data can we query with LINQ?“ Most people say “Well, we can query an SQL server database” . I am not very [...]

Διαβάστε περισσότερα »

Cross-Page postbacks in ASP.Net
In this post I would like to talk about cross-page postbacks in ASP.Net. When you have a .aspx page with a button on it and you click that button the page will be posted back to the original page.

Διαβάστε περισσότερα »

Send email in ASP.Net applications
I know that this topic is also well documented in the web. But I decided to have a go, after so many people ask me the same question "How can I send emails from asp.net web applications?"

Διαβάστε περισσότερα »

Posted: Τρίτη, 5 Οκτωβρίου 2010 8:16 μμ από nikolaosk | 0 σχόλια
Δημοσίευση στην κατηγορία: , , ,
Session State in ASP.Net
In this post I will talk about ASP.Net State management. I will provide a hands on example with VS and VB.Net. Before I go on with my example I would like to give a short introduction first. Web applications are built on Hypertext Transfer Protocol (HTTP). HTTP is a stateless protocol and each request to the server from the client is understood as an independent request.

Διαβάστε περισσότερα »

Populate web server controls in ASP.Net applications from a web service
In this post I would like to present you with a very simple example on how to create a simple web service that access data from a database. Then we will create a consuming application that will consume the web service. I will use VS 2010 Ultimate edition and C# as the development language.

Διαβάστε περισσότερα »

Using profile in ASP.Net applications
With Profile we store user specific data that is accessible anywhere in our ASP.Net application.

Διαβάστε περισσότερα »