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