Posted by Ajay Matharu in Development, Featured Articles, Javascript, WebAug 22nd, 2009 | 1 Comment
Lots of Javascript libraries and frameworks have come up. It has been made to make the life of developer really easy. Here is the list of all available Javascript frameworks, http://www.javascriptlibraries.com/
But, I have got a very big question to ask, “are these framework making the life of Developer really easy?”
With the increase in the speed and number of the javascript framework, its getting difficult for the developers to decide which framework is to be used where.
Here, http://mootools.net/slickspeed/, you can test the speed/validity selector test for some of the major frameworks...
Posted by Ajay Matharu in .Net, ASP.Net, Development, Javascript, Visual StudioJul 15th, 2009 | No Comments
Recently our team came across a situation where our job was to retrieve ArrayList in a page requested by flex application using HttpService.Which are accessed using Request[keyName]
Request objects always returns data in string format, so there was no point in trying that solution, so we were looking for some reliable and optimal solution. Googling around I came across JSON (Javascript Object Notation).JSON can be used in various languages, you can find the list of langauges and the resources requied to use JSON over here.
JSON allows us to serialize a object and send across a page in string...
Posted by Ajay Matharu in .Net, ASP.Net, HTML, Javascript, Tip of Week, Visual StudioJul 9th, 2009 | No Comments
You can disable cut, copy & paste in ASP.Net textbox in very simple way,
here is how you can disable the cut, copy, paste,
<asp:TextBox ID=”TextBox1″ runat=”server” oncopy=”return false” onpaste=”return false” oncut=”return false”></asp:TextBox>
Posted by Ajay Matharu in CSS, Design, Development, Javascript, WebJun 29th, 2009 | No Comments
Lately I’ve been working on performance issues. I could figure out some of the issues using the YSlow plugin of firefox. It looks at various things in your site. It rates your site based on certain parameters one of the parameter that I have been working on was Javascript compressor.
There are various ways you can compress your Javascript. You can have a plugin installed, you can find HTTPHandlers and HTTPModules which will do the work for you.
Just in case you are still not able to compress your Javascript files, here is the site that will do that for you, http://javascriptcompressor.com/...
Posted by Ajay Matharu in Design, Development, JQuery, Javascript, WebJun 28th, 2009 | 1 Comment
These days almost every site uses JQuery. It makes your life so easy. There is this another Javascript library called JQuery Tools that is coming up as competitor for JQuery UI. Here is the link to the JQuery Tool http://flowplayer.org/tools/demos/index.html.
But the question, for which I am searching the answer is,
Can JQuery Tools really compete with JQuery UI? And who would answer this question better then you guys.
So what you guys think, JQuery Tools Vs JQuery UI, who wins?
I look forward for hearing your thoughts on this. As this may help others to decide what should they go from either...