Click here to Skip to main content
15,913,055 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Hi guys,
In my application I have 5 pages and each page have 10 textboxes. After filling all pages i need status bar(How much percentage of data u entered like in NAUKRI.COM) in top.
Posted
Comments
tirumalarao123 19-Mar-12 2:41am    
i think it is possible through javascript

1 solution

hello there,

you can try this:-
XML
<div id="divStatus" style="background-color:green;">

 </div>


and in javascript:-

C#
function SetStatus(value)
{
var divStatus = document.getElementById('divStatus');
divStatus.Style.Width = value + '%';
}


and in value you can put no of textbox that was fill in the form.

hope this will help you

Regards
Andy.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900