Ask a Question related to ASP.NET General, Design and Development.
-
Ingeborg #1
hyperlink/button
Hi.
I want to insert an hyperlink/button for loading another
page, but I need to store some data in this operation too,
but I don't think the HyperLink web control has
a "onclick" event, and I have not yet found a way to load
a Page in C#.
Please help me...
Thanks in advance,
Ingeborg
Ingeborg Guest
-
Help Making a form's Submit button into a Hyperlink,Please
On my real estate website, I would like to require visitors to sign a guest book before being able to link to the county MLS system to search for... -
Hyperlink for Button Image
I have a 2 state button with an up.gif and a down.gif with behavior set for mouseover. Multiple hotspots were set in FW - a circle with rectangle... -
HELP WITH HYPERLINK ON BUTTON!!!
Hey all i was wonderring if u could help me with a problem I am having. i am making a site for a friend and i have a flash button on the main page... -
Dynamically Hyperlink and Event Handler for the Hyperlink ?
Hi, I´m creating an Hyperlink dynamically for my DataGrid: HyperLink hl = new HyperLink(); hl.Text = "MyLink"; hl.NavigateUrl = "#";... -
Determining if a hyperlink button to external site has been clicked.
You could have the hyperlink button set a hidden text field that you could inspect on postback, or have the hyperlink itself trigger the postback... -
Showjumper #2
Re: hyperlink/button
Yopu can use a hyperlink and pass info to the new page via the query string.
And then in the new page do a request.params to get the info from the
querystring. You only want to pass the info via the querystring if it is not
sensitive info. If it is a credit card info or thelike you'll need to do
another way.
"Ingeborg" <nobody@nowhere.net> wrote in message
news:041401c34280$f560ba30$a301280a@phx.gbl...> Hi.
>
> I want to insert an hyperlink/button for loading another
> page, but I need to store some data in this operation too,
> but I don't think the HyperLink web control has
> a "onclick" event, and I have not yet found a way to load
> a Page in C#.
>
> Please help me...
>
> Thanks in advance,
> Ingeborg
>
Showjumper Guest
-
Jos Branders #3
Re: hyperlink/button
Ingeborg wrote:
Use a LinkButton instead. Linkbuttons have an OnClick event,> Hi.
>
> I want to insert an hyperlink/button for loading another
> page, but I need to store some data in this operation too,
> but I don't think the HyperLink web control has
> a "onclick" event, and I have not yet found a way to load
> a Page in C#.
but they look like a hyperlink.
At the end of the event handler, use either:
Response.Redirect("newfile.aspx")
or
Server.Transfer("newfile.aspx")
--
Jos Branders
Jos Branders Guest



Reply With Quote

