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.
Διαβάστε περισσότερα »
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.
Διαβάστε περισσότερα »
With Profile we store user specific data that is accessible anywhere in our ASP.Net application.
Διαβάστε περισσότερα »
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...(
read more)
When we debug our applications we need to have as much information as possible at our disposal. There are a lot of techniques and ways to achieve that. One way to get lots of debugging information is to use Tracing. We can enable Tracing at the Page Level and Application Level. We can view the viewstate information and the events chain when a page is executing, among other things.
Διαβάστε περισσότερα »
I am going to start a series of posts on ASP.Net and JQuery that will explain a lot of common tasks that can be accomplished using this fantastic open source Javascript library.
Διαβάστε περισσότερα »
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.
Διαβάστε περισσότερα »
One of the issues I really like to read and learn is client side technologies. I am an ASP.Net guy at heart but I find CSS particular useful and I have been blogging about CSS in my other blog.
Have a look here if you want for some interesting posts on CSS.
I believe designing web applications [...]
Διαβάστε περισσότερα »
This is a very short post for a new feature that ships with VS 2010 and ASP.Net 4.0.
It is about the hidden fields in ASP.Net 4.0. We do know that ASP.Net is using hidden fields as a state control mechanism. It is used to preserve viewstate and control state.
They are usually included in a div [...]
Διαβάστε περισσότερα »
We can permanently redirect traffic to the new pages without losing page rankings by using the 301 permanent redirect. RedirectPermanent help us to achieve that.
Διαβάστε περισσότερα »
The important setting that was added in ASP.Net 4.0 is the last setting, compressionEnabled="true".
Διαβάστε περισσότερα »
How to maintain the scroll position-location when a postback occurs in an ASP.NET application
Διαβάστε περισσότερα »
I have this friend of mine who is responsible of a team of asp.net developers that develop applications for people from all walks of life.
One of his main concerns were that he had to check the deployment stage of every application very carefully and constantly had to correct common mistakes in the web.config file.
Some common [...]
Διαβάστε περισσότερα »
It is a very common request when designing an asp.net application, to set the focus on an asp.net control.
Διαβάστε περισσότερα »
Hello again,
I want to wish all a very happy new year and let’s all forget 2009 which has been a very difficult year for most people around the globe.
I have received some very good news from Microsoft. They have presented me with an ASP.NET MVP. This is a big honor and a big responsibility for [...]
Διαβάστε περισσότερα »
User controls are reusable controls that can be defined once and used whenever we need them, in any of the .aspx pages of our application
Διαβάστε περισσότερα »
In this post I will show you how to create an ASP.NET Dynamic Data Web Site with VB.Net
Διαβάστε περισσότερα »
In this post I will talk about ASP.NET 4.0 and SEO. I will demonstrate how to add meta tags using the Page class or the Page directive
Διαβάστε περισσότερα »
Recently I had the time to examine thoroughly my blog stats. From that it was evident people liked a lot the posts regarding the new features in .Net 4.0. So in this post I am going to discuss the new Entity DataSource which is similar to the LINQ to SQL DataSource, except it allows you to use your Entity Framework data object model instead. I will also demonstrates the new features of the GridView control
Διαβάστε περισσότερα »
In this post I will be looking into the ASP.Net calendar control.
Διαβάστε περισσότερα »
In ASP.NET 4.0 it is possible to set the name of your controls ClientID attribute. This is possible thanks to the ClientIDMode property
Διαβάστε περισσότερα »
In this post I will show you a step by step example on how to build an ASP.NET application with C# and Entity Framework. First let's try to define what EF is and why it is going to help us to create easily data-centric applications.Entity Framework is an object-relational mapping (ORM) framework for the .NET Framework.EF addresses the problem of Object-relational impedance mismatch.
Διαβάστε περισσότερα »
In this post I will talk about Viewstate management in ASP.NET 4.0.
Διαβάστε περισσότερα »
In this post I will try with a step by step example to highlight the new features of VB 10.0. I will also highlight some of the new enhancements on VS 2010 IDE.
Διαβάστε περισσότερα »
Another idea-concept that is tightly linked with LINQ is LAMBDA expressions. Lambda expressions are shorthand for anonymous delegates . Basically delegates allow you to create a variable that “points” to a method. We can use this variable at any time to invoke the method.
Διαβάστε περισσότερα »