I'm trying to create an ASP .NET MVC WebSite that allows the user to enter the website
without providing any additional information or by specifying an id or a name. Is this possible?
How?
I've tried the following method but it's not working

 public void Index()
        {
            //...
            ProcessClient();
        }

        public void Index(int id)
        {
            //...
            ProcessClient();

        }

        public void Index(String guid)
        {
            //...
            ProcessClient();

        }


        public ActionResult ProcessClient()
        {
            return View("Index");
        }

My thanks in advanced

if you want people to enter without a user name or password you don't have to do anything. so, i'll flip the question on you: are you saying you want to block certain people from entering? would allowing specific IPs work? (not easy or certain to work.) you could create one user name and password, hard-code them and give them to the people you want.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.