2
Answers

mssql 2000 in a stand alone computer

denny simon

denny simon

14y
2.2k
1
hello all

how to make my database cannot be accessed directly from enteprice manager/sql query analyzer ,but can be accessed by csharp coding ?

thank you
denny
Answers (2)
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