Ask a Question related to ASP.NET General, Design and Development.
-
Marcelo #1
Prevent Postback with ImageButton
Hi,
I have an ImageButton which, when clicked, redirects to another page. The
problem is that page A (where the ImageButton is located) has lots of
information, but when I click the button, it redraws the header of the
table, which we'd like not to happen.
My question is: Is there any way of prevent this postback? Or, is there any
way of, in Page_Load, detect that it is happening due the click on the
button, so I could redirect it before the header drawing?
thanks in advance
marcelo
Marcelo Guest
-
ImageButton PostBack Help
I cant figure out why this ImageButton doesn't post back the way a Button does. Can anyone explain to me why the RaisePostBackEvent() method doesn't... -
How do you prevent postback data from being loaded into controls?
I've got a form that dynamically adds a DropDownList control to a page. After the page is posted back the the code behind rebuilds the control and... -
Imagebutton over a little text
Hi, How can I put a little text below a imagebutton control ? Is there any property ? tks ed -
how to prevent prevent .so-calling routine to crash from segfaults in .so
Hi, Guys I am stuck with a problem and need some help. Platform : Linux(RedHat 7.3) Problem Area : Dynamic Shared Object Libraries, POSIX... -
How can I put some text on a imageButton
dear all,I want to put some text(caption) on a imageButton in asp.net,I guess this maybe be done by deriving a new class from ImageButton,but I... -
Kairi Zikpin #2
Re: Prevent Postback with ImageButton
the button has a postback property (i forget the exact name). set that
to false to disable postback
Marcelo wrote:> Hi,
>
> I have an ImageButton which, when clicked, redirects to another page. The
> problem is that page A (where the ImageButton is located) has lots of
> information, but when I click the button, it redraws the header of the
> table, which we'd like not to happen.
> My question is: Is there any way of prevent this postback? Or, is there any
> way of, in Page_Load, detect that it is happening due the click on the
> button, so I could redirect it before the header drawing?
>
> thanks in advance
>
> marcelo
>
>Kairi Zikpin Guest
-
Marcelo #3
Re: Prevent Postback with ImageButton
I found no Postback property for ImageButton
"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:3F019A43.8050806@netscape.net...The> the button has a postback property (i forget the exact name). set that
> to false to disable postback
>
> Marcelo wrote:> > Hi,
> >
> > I have an ImageButton which, when clicked, redirects to another page.any> > problem is that page A (where the ImageButton is located) has lots of
> > information, but when I click the button, it redraws the header of the
> > table, which we'd like not to happen.
> > My question is: Is there any way of prevent this postback? Or, is there>> > way of, in Page_Load, detect that it is happening due the click on the
> > button, so I could redirect it before the header drawing?
> >
> > thanks in advance
> >
> > marcelo
> >
> >
Marcelo Guest
-
Kairi Zikpin #4
Re: Prevent Postback with ImageButton
you are right. my bad. did not give this one due diligence.
if you are redirectng to a new page, why is a table being redrawn? on
which page is this table? i think i need some more details
Marcelo wrote:> I found no Postback property for ImageButton
>
> "Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
> news:3F019A43.8050806@netscape.net...
>> The>>the button has a postback property (i forget the exact name). set that
>>to false to disable postback
>>
>>Marcelo wrote:
>>>>>>>Hi,
>>>
>>>I have an ImageButton which, when clicked, redirects to another page.
>> any>>>>>problem is that page A (where the ImageButton is located) has lots of
>>>information, but when I click the button, it redraws the header of the
>>>table, which we'd like not to happen.
>>>My question is: Is there any way of prevent this postback? Or, is there
>>>>>>>way of, in Page_Load, detect that it is happening due the click on the
>>>button, so I could redirect it before the header drawing?
>>>
>>>thanks in advance
>>>
>>>marcelo
>>>
>>>
>Kairi Zikpin Guest



Reply With Quote

