Custom Attributes naming in HTML 5

Now we can embed the custom data attributes on all HTML elements. These new custom data attributes consist of Attribute Name and Attribute Value. And we have to name the custom attribute prefix with data-* (here * means we have to add some text or character). For example we created some functionality to display Tool-tip using Jquery or JavaScript. The Tool tip text comes from tooltip custom attribute (html5 extra attributes). before we used like this <div tooltip="This for Tool - tip text"...
More

Things to remember while code for file uploads in web app

This is just for beginners!, If we write code for file upload in web app we must follow few things, for example file size, type of file and best to restrict file types. Please check in detail with below points. File size:- We must check with file size. Otherwise some users may full you hard disk by uploading big size files. So, it is best to restrict the size of file. one example:- If in you web site your given option for upload profile image. So, user can upload (JPG,PNG, GIF ..) file for hi...
More

Multiline textbox in Windows Phone 7

In this post I am going to explain about Textarea(Multiline) in windows phone 7 (wp7). We did not have textarea control, but we can create textarea with Textbox itself. Even for textbox there is no property called Mutiline="True". It is easy to do check it.. In Silverlight for Windows Phone didn't have textarea control. So, we need to use same Textbox as a textarea by changing few properties like AcceptsReturn value to True (AcceptsReturn="True"), to allow enter key in the textbox. we can see T...
More