Convert percentage to pixel width (textbox)
ASP.NET
3
Posts
2
Posters
0
Views
1
Watching
-
How can I set the width property of a textboc to pixels, if the users add, say for instance 25% as the width. Is there a way to convert percentage to pixels?
why don;t you use this.texbox.Width = Unit.Percentage(25) ; Sanjay Sansanwal www.sansanwal.com
-
why don;t you use this.texbox.Width = Unit.Percentage(25) ; Sanjay Sansanwal www.sansanwal.com