Re: Display same contact list for all users

  •  07-31-2007, 4:05 PM

    Re: Display same contact list for all users

    Adam:
    It should be:
     
    <script runat="server">
     void Page_Load(object sender, System.EventArgs e)
     { 
         string[] names = {"Adam","Terry","Jacob"};
        string nameString = String.Join(";",names); 
     }
    </script>
     
     


    Pleas see my last post above yours. Even with a string of names, it doesn't seem to work since all of the code in the xml file works on what seems like an array of objects (determining whether they are online/offline and adding them to the list, etc)....


View Complete Thread