Easy Asp.net ajax file upload
Here’s a simple way to get file uploading without the widraw of a postback: it is the asp.net implementation (with a few changes) of the following jQuery plugin. An image is uploaded and the form...
View ArticleEasy Jquery validation in Asp.net 4
With Asp.net 4 comes a new property named ClientIDMode wich allow us to take control over the control ID rendered client side. The property can be applied at: Page level, all the controls within page...
View ArticleAsp.net user authenticated after signout.
The Asp.net Membership relies on cookies to store the FormAuthentication ticket of a user, this means that we have to remove the cookie in order to signoff from our application. When an user is logged...
View ArticleSimple Asp.net Jquery Ajax paging
Following a great post on Encosia here’s a an ajax powered repeater, that uses JTemplates, with paging and the chance of changing the page size, you can download the sources from here :...
View ArticleFiddler with an Asp.net site.
Fiddler is an Http monitor and it is very handy when it comes to analyze the traffic from and to your computer or more specifically if you want to list the connections made from and to your Asp.net...
View ArticleData bind simbols legend in Asp.Net
An overview for the code render blocks in Asp.Net : <%# %> – to be used for databinding (es repeater rows etc). <% %> – code render block, allow execution of inline expressio (es...
View ArticleFrom Asp.net Webforms to Asp.net MVC
I’ve been using MVC recently for a while now, both at work and on my own, I am really enjoying it, the implementation proposed by Microsoft is simple and effective and it sticks more to the nature of a...
View Article