Archives
-
Procedure or function expects parameter which was not supplied.
Recently I got this error when doing a ADO.NET database call using ExecuteReader.
-
Twitter like server-side notifications with ASP.NET and jQuery
I have written a control that can be used to show notification messages like twitter from server-side. This control is kind of a wrapper around a jquery plugin called jnotify by Giva Labs. I thought I will put it up on web if someone wants to use it.
-
jQuery UI Datepicker Visible upon first time page load
I have used jQuery UI Datepicker several times before but in one of my recent implementation, I started seeing this weird behavior. At the very bottom of my page there was a thin rectangular box. See the image below:
-
Adjust Text Input and Textarea Fonts
I had my text inputs and textareas showing different text font though they were essentially using same styles like:
-
Problem with Unordered List ( ul / li ) tags with fixed–width
This is a very simple issue. I had an unordered list with few items in it. I wanted all the li to be fixed-width. I set the width of the ul and li but it won’t work.
-
Part 3: Showing ASP.NET Server-Side Messages in a Custom Dialog (Server-side with ASP.NET AJAX)
There are times when you want to display validation or error message(s) to the user in a pop-up dialog. These messages could be coming from client-side or server-side. In this multi-part series I am going to provide you with the code to accomplish this. Yes, I am not going to explain building from scratch but provided you with working sample, which you can integrate in your web site/application. In this part I have shared the code that will work when you are using ASP.NET AJAX UpdatePanel.