1
Answer

How to show 3D object on WebSite

divya rawat

divya rawat

16y
3k
1
I want to show 3-D objects on my web-site and there should be a user control to rotate that object. Also there is a need to give a control to set dimensions of that object with respect to X-axis, Y-axis as well as Z-axis.
I am using ASP.NET with C#.
Can anyone give me pointers that what should I do?
Which libraries should I use ?
I don't want to use SilverLight or WPF.
Answers (1)
0
Vikram
NA 319 262.4k 14y
Hi yashwant,
  
    Just Define variable in the Markup it consider as Global.

e.g
  
   <script type='text/javascript>
       var Navigateurl="~/block/abc.aspx";
         function pageLoad()
         {
                 //do something
         }

         function otherFunction()
        {
            var newurl = Navigateurl;
        }

</script>
This way you can declare the global variable in the markup.

Hope this will help you.

Regards,
 Vikram