I've tried to use LinkButton to add "Previous" "Home" and "Next" to my webpage and once I clicked on the link, it works properly on what it does, but it changed my website's layout, take out all the available menu items on my webpage's top and left panel.
I tried to run it without assigning an event handler to the LinkButton. When clicking on the link, my content layout doesn't change a thing, but the top and left panel changed. Weird right?
Anyone facing similar problem?
previous = new LinkButton();
next = new LinkButton();
home = new LinkButton();
previous.Text = "Previous";
previous.Click += Show_Previous;
next.Text = "Next";
next.Click += Show_Next;
home.Text = "Home";
home.Click += Show_Home;