Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi everyone,
Can anybody tell me that how can i use javascript to change the location of a picture box present on form1.cs in .net. It is mandatory that i have to use javascript.
Thanks,
Akky
Posted
Comments
Timberbird 18-Sep-12 8:35am    
Is your project WinForms application or a web form? WinForms usually don't use javascript at all, unless you implement/use some kind of browser control. How does your task sound exactly?

1 solution

Check this.

JavaScript
<script type="text/javascript">
        document.getElementById('pictureBox1').style.position = 'absolute';
        document.getElementById('pictureBox1').style.left = '25px';
        document.getElementById('pictureBox1').style.top = '25px';
</script>
 
Share this answer
 
Comments
Akkywadhwa 18-Sep-12 9:20am    
Hi vinod,
I am unable to use it in my windows forms project please explain me that how can I use it with windows forms.
Thanks.

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