6
Answers

I am planning to design new IDE

Gopi Kondalarao

Gopi Kondalarao

15y
2.6k
1
Hi,
     I have a requirement to design new IDE. My client wants the toolbox, properties window and drag and drop properties of the controls which are presented in the FORM. All the things should happen in run time. Is it possible at run time? If possible can u tell me how it will be?

    That's the reason I am planning to design new IDE..... Is there any tool to design new IDE? Please help me in this issue....... From last 10 days I am struggling with this......

Thanks & Regards,
Gopi.
Answers (6)
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