Question : how to change domain name in sbs 2008

I have just installed sbs 2008. On the SBS Console > Connectivity > Internet Domain Name it shows remote.mydom.org. This end up being my Remote Web Workplace website: https://remote.mydom.org.

I want it to show smerf.mydom.org, mainly because I already have a security certificate with that name. How do I change that? The console tells me to run the Connect to Internet wizard, but when I do it only lets me change the domain name, not the "remote" bit.

Answer : how to change domain name in sbs 2008

you don't need the 'ref' because you already returning a value...
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
class Program
    {
        static void Main(string[] args)
        {
            int fib = 20;
            fib = computeFibonacci(fib); Console.WriteLine(fib);
            fib = 20;
            fib = computeFibonacciRecursive(fib); Console.WriteLine(fib);
        }

        private static int computeFibonacciRecursive(int n)
        {
            if (n <= 1)
            {
                return n;
            }
            else
            {
                return computeFibonacciRecursive(n - 1) + computeFibonacciRecursive(n - 2);  //<------
            }
        }

        private static int computeFibonacci(int n)
        {
            int a = 1, b = 1;
            for (int i = 3; i <= n; i++)
            {
                int c = a + b;
                a = b;
                b = c;
                Console.WriteLine("b is= " + b);
            }
            return b;
        }

    }
Random Solutions  
 
programming4us programming4us