How to make a button go to a new page/tab/Form
Page 1 of 13 Replies - 538 Views - Last Post: 12 April 2012 - 03:22 PM
#1
How to make a button go to a new page/tab/Form
Posted 12 April 2012 - 01:24 PM
I need help making a button go to a new page. If you can help me piz help...
Replies To: How to make a button go to a new page/tab/Form
#2
Re: How to make a button go to a new page/tab/Form
Posted 12 April 2012 - 01:26 PM
new page of what?
#3
Re: How to make a button go to a new page/tab/Form
Posted 12 April 2012 - 01:36 PM
Quote
Where do I start?
You start by learning a coding language FIRST.
Learn to plan before you type.
THEN you start designing software with a purpose.
Finding answers to specific problems:
Spoiler
If this sounds like you
Newbie/Rookie said:
I have a little programming experience but I need to write ...
Spoiler
Otherwise, you can just jump to the resources here:
Some of the tutorials below are for C# or Java not C, C++, VB.NET [...]. But the conceptual stuff of classes, object oriented design, events etc. are not language specific and should give you enough guidance in theory of program development for you to be able to look-up specific code example in your chosen coding language.
Resources, references and suggestions for new programmers. - Updated Mar 2012
Spoiler
What have to you tried to code so far? - Click the link
What part of what you have tried isn't working?
Are you getting error messages, or is it just not giving you the results you wanted?
(In other words, you at least have to make and show us your good faith effort to do your own coding. We are here to help you, not do it for you.)
#4
Re: How to make a button go to a new page/tab/Form
Posted 12 April 2012 - 03:22 PM
I'm assuming this is for ASP.Net?
You can use jQuery on the client side:
You can use jQuery on the client side:
$(document).ready(function(){
$('#my-button').click(function(){
window.location = "http//www.someurl.com";
});
});
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote





|