Click here to Skip to main content
15,897,273 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 1:42
Sherin Iranimose7-Jul-08 1:42 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 1:45
kathyani7-Jul-08 1:45 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 2:01
Sherin Iranimose7-Jul-08 2:01 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 2:06
kathyani7-Jul-08 2:06 
its giving error sir.
i wrote code ..
public partial class PagerControl : System.Web.UI.UserControl
{

private int _pageNumber;


public int PageNumber
{


set
{
_pageNumber = value;
ViewState["pageNumber"] = value;
}
get
{


return int.Parse(ViewState["PageNumber"].ToString());
}

}

protected void Page_Load(object sender, EventArgs e)
{
if (ViewState["pageNumber"] == null)
ViewState["pageNumber"] = "1";
if (this.PageNumber == 1)
{
lnkPrevious.Enabled = false;
}
else
{
lnkPrevious.Enabled = true;
}
if (this.PageNumber == 11)
{
lnkNext.Enabled = false;
}
else
{
lnkNext.Enabled = true;
}
}
GeneralRe: how to disable link button ? Pin
eyeseetee7-Jul-08 2:17
eyeseetee7-Jul-08 2:17 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 2:20
kathyani7-Jul-08 2:20 
GeneralRe: how to disable link button ? Pin
Colin Angus Mackay7-Jul-08 2:44
Colin Angus Mackay7-Jul-08 2:44 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 2:48
Sherin Iranimose7-Jul-08 2:48 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 2:25
Sherin Iranimose7-Jul-08 2:25 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 2:28
kathyani7-Jul-08 2:28 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 2:33
Sherin Iranimose7-Jul-08 2:33 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 2:34
kathyani7-Jul-08 2:34 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 2:37
Sherin Iranimose7-Jul-08 2:37 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 2:44
kathyani7-Jul-08 2:44 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 2:49
Sherin Iranimose7-Jul-08 2:49 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 2:56
kathyani7-Jul-08 2:56 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 2:59
kathyani7-Jul-08 2:59 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 3:06
Sherin Iranimose7-Jul-08 3:06 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 3:10
kathyani7-Jul-08 3:10 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 3:17
Sherin Iranimose7-Jul-08 3:17 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 3:19
kathyani7-Jul-08 3:19 

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.