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

ASP.NET

 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 3:27
Sherin Iranimose7-Jul-08 3:27 
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:07
Sherin Iranimose7-Jul-08 3:07 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 3:11
kathyani7-Jul-08 3:11 
GeneralRe: how to disable link button ? Pin
Sherin Iranimose7-Jul-08 3:16
Sherin Iranimose7-Jul-08 3:16 
GeneralRe: how to disable link button ? Pin
eyeseetee7-Jul-08 2:57
eyeseetee7-Jul-08 2:57 
GeneralRe: how to disable link button ? Pin
eyeseetee7-Jul-08 1:21
eyeseetee7-Jul-08 1:21 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 1:26
kathyani7-Jul-08 1:26 
i already set page number like this ,where i have to change.
public partial class PagerControl : System.Web.UI.UserControl
{
private int _pageNumber = 11;

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 (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
Christian Graus7-Jul-08 3:40
protectorChristian Graus7-Jul-08 3:40 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 3:42
kathyani7-Jul-08 3:42 
GeneralRe: how to disable link button ? Pin
Christian Graus7-Jul-08 3:51
protectorChristian Graus7-Jul-08 3:51 
GeneralRe: how to disable link button ? Pin
Christian Graus7-Jul-08 3:37
protectorChristian Graus7-Jul-08 3:37 
AnswerRe: how to disable link button ? Pin
joemonvarghese80@yahoo.co.in6-Jul-08 23:54
joemonvarghese80@yahoo.co.in6-Jul-08 23:54 
GeneralRe: how to disable link button ? Pin
kathyani7-Jul-08 0:00
kathyani7-Jul-08 0:00 
GeneralRe: how to disable link button ? Pin
Christian Graus7-Jul-08 3:39
protectorChristian Graus7-Jul-08 3:39 
Questionhaving problem with html.ActionLink Pin
mynameissuraj6-Jul-08 23:29
mynameissuraj6-Jul-08 23:29 
AnswerRe: having problem with html.ActionLink Pin
Arindam Tewary6-Jul-08 23:40
professionalArindam Tewary6-Jul-08 23:40 
AnswerRe: having problem with html.ActionLink Pin
mynameissuraj6-Jul-08 23:47
mynameissuraj6-Jul-08 23:47 
Questionsolution plz Pin
Kissy166-Jul-08 23:28
Kissy166-Jul-08 23:28 
AnswerRe: solution plz Pin
eyeseetee6-Jul-08 23:39
eyeseetee6-Jul-08 23:39 
QuestionLinkButton not calling a javascript function in IE Pin
RevPeter3rd6-Jul-08 23:26
RevPeter3rd6-Jul-08 23:26 
AnswerRe: LinkButton not calling a javascript function in IE Pin
Arindam Tewary6-Jul-08 23:36
professionalArindam Tewary6-Jul-08 23:36 
GeneralRe: LinkButton not calling a javascript function in IE Pin
RevPeter3rd6-Jul-08 23:52
RevPeter3rd6-Jul-08 23:52 
GeneralRe: LinkButton not calling a javascript function in IE Pin
Arindam Tewary7-Jul-08 0:08
professionalArindam Tewary7-Jul-08 0:08 
Question.NET dll to be visible in .NEt tab of Add Reference dialog Pin
Arindam Tewary6-Jul-08 23:20
professionalArindam Tewary6-Jul-08 23:20 

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.