1
Answer

Data form wizard does not exist

zixing wang

zixing wang

16y
3.8k
1

 

I read your article "Working with Data Form Wizard". Excellent article and very easy to follow.

I have two software that are used to code C#. One is Visual Studio 2005 professional version and one is Visual C# 2005 express version.

But neither VS2005 nor VC# 2005 contains this wizard item. I used Add new item window, but the Data Form Wizard icon does not exist.

I did download the SP1.

Please help me to find what is the problem.

Thanks a lot

Zixing Wang

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