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

ASP.NET

 
Questionproblem with sessions in common methods class Pin
eyeseetee6-Jul-08 23:43
eyeseetee6-Jul-08 23:43 
AnswerRe: problem with sessions in common methods class Pin
Imran Khan Pathan6-Jul-08 23:55
Imran Khan Pathan6-Jul-08 23:55 
GeneralRe: problem with sessions in common methods class Pin
eyeseetee6-Jul-08 23:57
eyeseetee6-Jul-08 23:57 
GeneralRe: problem with sessions in common methods class Pin
N a v a n e e t h7-Jul-08 0:32
N a v a n e e t h7-Jul-08 0:32 
GeneralRe: problem with sessions in common methods class Pin
eyeseetee7-Jul-08 0:52
eyeseetee7-Jul-08 0:52 
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 
This is my code
protected void lnkPrevious_Click(object sender, EventArgs e)
{

if (this.PageNumber ==1)
{
lnkPrevious.Enabled = false;
lnkNext.Enabled = true;
Response.Redirect("pge1.aspx");
}
else
{
this.PageNumber -= 1;
Response.Redirect( "pge"+this.PageNumber.ToString()+".aspx");

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

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.