On Apr 15, 8:49 pm, Jesse.Aufi...@gmail.com wrote:
> > > I want my users to be able to click a link on my asp.net page to open a pdf
> > > document. However, I do not want them to be able to enter in a url that
[quoted text clipped - 24 lines]
>
> - Show quoted text -
Jesse, use the LinkButton control to create a link, and create an
event handler for the Click event
<asp:LinkButton id="LinkButton1"
Text="Download PDF"
OnClick="LinkButton_Click"
runat="server"/>
in the code-behind
void LinkButton_Click(Object sender, EventArgs e)
{
....
}
Jesse.Aufiero@gmail.com - 16 Apr 2008 01:27 GMT
> On Apr 15, 8:49 pm, Jesse.Aufi...@gmail.com wrote:
>
[quoted text clipped - 42 lines]
>
> }
if you are interested in consulting, i have a small project that i
could use some assistance with. let me know if you are interested:
jesse.aufiero@gmail.com