Hi fellow readers, Today I come to share with you how I choose a javascript library to be used on my new project. I’m not talk about choosing just an AJAX library but I want some ‘full’ set of library which including both AJAX core and user interface core. Here are my choices before consideration… …
Why you need validation in your web application?
Hi folks, Did you ever use ASP.NET validation controls? If you never heard or never use it before, see on the toolbox at the “validation” group. Those are all validation controls. – RequiredFieldValidator – RangeValidator – CompareValidator – RegularExpressionValidator – CustomValidator – ValidationSummary The main point of this control group is to be used to …
Why my .style.left doesn”t work with FireFox?
This is a simple & stupid knowledge that I taken about 2 days to solve it. I have a project that have to use this code…. var con = document.getElementById(“menu”); con.style.left = “10″; con.style.top = “20″; When I run this code in Internet Explorer 6, 7. I got it working like I want! But when …
Use JavaScript to change “float” style
Hey friends, In a few days ago, I’ve just stuck with how to change “float” style in JavaScript and very confuse why it doesn’t work at all! I’m using … var obj = document.getElementById(“some1”); obj.style.float = “left”; No luck at all. I tried both on Internet Explorer and Firefox. Even I use Internet Explorer Toolbar and …
How do you do when dealing with cross-browser web development?
Hi friends, I just want to know that how do you do when you’re dealing with cross-browser web development. Which tools you are using? How do you handle those all buggies browser? What experiences you faced? As I’m dealing with cross-browser web development project where I generally strict with XHTML 1.0 standard. (As I’m using …
7 Tips made rendering HTML faster (Do it lately!)
Any serious web developers should experience a too long rendering time for his/her web pages. Here is the list that I usually do it before release my web application to production stage. I call it my “Optimization check-list”. Please note that, some of tip should be used on ASP.NET specifically and any other may not. …
Great 3rd party Ajax control suite
Have you ever tried Ajaxify your ASP.NET application? Have you tried and tired? I’m one of those guys who already tried and tired on ajaxify the application to fully working in Ajax basis. Until the day I found one of a great Ajax control suite named Telerik RadControls for ASP.NET. It was combined by various …