Hajan Selmani
CEO & Founder of HASELT, Microsoft MVP in ASP.NET/IIS
-
Bind jQuery UI DatePicker on dynamically created text box controls
JQuery UI DatePicker is one of the most widely used jQuery UI Plugins and has all the needed features implemented in it for a very rich datepicker. The implementation of the datepicker functionality to a given text box field is pretty much straight forward, especially if you follow the examples given on the jQuery UI DatePicker demos website.
-
My blogs on DZone Network (MVB)
Hi everyone,
-
Tips and Tricks - Register web user controls in web.config
If you are working a lot with web user controls and you have many of them repeating in different pages, you may consider registering them in web.config instead of the pages. I have been using this simple trick many times now, so I thought it would be nice to share it with you.
-
NopCommerce – ASP.NET open source e-commerce solution
I had a chance to work for first time with nopCommerce about one year ago. Now again, two weeks ago I was in need to make small research about open-source asp.net e-commerce solutions.
-
Find Code Cyclomatic Complexity with NDepend
Cyclomatic Complexity or also known as ‘Conditional Complexity’ is measurement of complexity of a program code. The cyclomatic complexity is calculated using the control flow graph of the program, so this is based on the graph theory.
-
Posting from ASP.NET WebForms page to another URL
Few days ago I had a case where I needed to make FORM POST from my ASP.NET WebForms page to another external site URL. More specifically, I was working on implementing Simple Payment System (like Amazon, PayPal, MoneyBookers). The operator asks to make FORM POST request to a given URL in their website, sending parameters together with the post which are computed on my application level (access keys, secret keys, signature, return-URL… etc). So, since we are not allowed nesting another form inside the <form runat=”server”> … </form>, which is required because other controls in my ASPX code work on server-side, I thought to inject the HTML and create FORM with method=”POST”.
-
BING Search using ASP.NET and jQuery Ajax
The BING API provides extremely simple way to make search queries using BING. It provides nice way to get the search results as XML or JSON. In this blog post I will show one simple example on how to query BING and get the results as JSON in an ASP.NET website with help of jQuery’s getJSON ajax method.
-
Change the default Icon on your jQuery UI Accordion
-
Using jQuery Live instead of jQuery Hover function
Let’s say we have a case where we need to create mouseover / mouseout functionality for a list which will be dynamically filled with data on client-side.
-
Table sorting & pagination with jQuery and Razor in ASP.NET MVC
Introduction