Click here to Skip to main content
15,898,035 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
Just copy the code part I have given !!

public PagerControl()
{  
  _pageNumber = 1;

}



after this line .

public partial class PagerControl : System.Web.UI.UserControl
{
private int _pageNumber;


So that it looks like:

public partial class PagerControl : System.Web.UI.UserControl
{
    private int _pageNumber;
    public PagerControl()
    {  
        _pageNumber = 1;
    }
    // class continues  as it is in you code
    // ........


Thanks,
Arindam D Tewary

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 
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 
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 

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.