Download Button

Greeting,

Is there a way to create a Button instead of hyperlink Download Me!. Can anybody show me how would i do that. 

Thanks,

Kamlesh

Thanks Ergonomist. Could you please show me an example please.

Kamlesh

Hi Kamlesh,

Easily:

<form action="http://url.to/result">
    <input type="submit" value="Get result!">
</form>

 

Cheers
E

 

Hi Kamlesh,

You'll need to edit the source code of your HTML report, where a normal link should look roughly like this:

<a href="http://url.to/result">Get result!</a>

Replace with what I have posted above and you should be all set.

Cheers
E

Thanks Ergonomist.