Click here to Skip to main content
16,014,591 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionhow to disable link button ? Pin
kathyani6-Jul-08 23:40
kathyani6-Jul-08 23:40 
AnswerRe: how to disable link button ? Pin
eyeseetee6-Jul-08 23:44
eyeseetee6-Jul-08 23:44 
GeneralRe: how to disable link button ? Pin
kathyani6-Jul-08 23:55
kathyani6-Jul-08 23:55 
GeneralRe: how to disable link button ? Pin
eyeseetee6-Jul-08 23:58
eyeseetee6-Jul-08 23:58 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 0:02
kathyani7-Jul-08 0:02 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 0:03
Sherin Iranimose7-Jul-08 0:03 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 0:07
kathyani7-Jul-08 0:07 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 0:11
Sherin Iranimose7-Jul-08 0:11 
Try this, First redirect then disable the button.

protected void lnkPrevious_Click(object sender, EventArgs e)
{

if (this.PageNumber ==1)
{
Response.Redirect("pge1.aspx");
lnkPrevious.Enabled = false;
lnkNext.Enabled = true;

}
else
{
this.PageNumber -= 1;
Response.Redirect( "pge"+this.PageNumber.ToString()+".aspx");

}
}

EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.

GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 0:14
kathyani7-Jul-08 0:14 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 0:21
Sherin Iranimose7-Jul-08 0:21 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 0:25
kathyani7-Jul-08 0:25 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 0:44
kathyani7-Jul-08 0:44 
GeneralRe: how to disable link button ? Pin
Arindam Tewary7-Jul-08 0:50
professionalArindam Tewary7-Jul-08 0:50 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 0:54
kathyani7-Jul-08 0:54 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 1:15
kathyani7-Jul-08 1:15 
GeneralRe: how to disable link button ? Pin
Arindam Tewary7-Jul-08 1:24
professionalArindam Tewary7-Jul-08 1:24 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 1:48
kathyani7-Jul-08 1:48 
GeneralRe: how to disable link button ? Pin
eyeseetee7-Jul-08 0:53
eyeseetee7-Jul-08 0:53 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 0:53
Sherin Iranimose7-Jul-08 0:53 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 1:05
kathyani7-Jul-08 1:05 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 1:16
Sherin Iranimose7-Jul-08 1:16 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 1:23
kathyani7-Jul-08 1:23 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 1:28
Sherin Iranimose7-Jul-08 1:28 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 1:34
kathyani7-Jul-08 1:34 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 1:38
kathyani7-Jul-08 1:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.