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

ASP.NET

 
QuestionUnable to connect to visual Studio's Local webhost server Pin
kibromg8-Jul-08 4:25
kibromg8-Jul-08 4:25 
Questionhow to disable imagebutton ? Pin
kathyani8-Jul-08 3:38
kathyani8-Jul-08 3:38 
AnswerRe: how to disable imagebutton ? Pin
Herman<T>.Instance8-Jul-08 4:07
Herman<T>.Instance8-Jul-08 4:07 
GeneralRe: how to disable imagebutton ? Pin
kathyani8-Jul-08 4:10
kathyani8-Jul-08 4:10 
GeneralRe: how to disable imagebutton ? Pin
Christian Graus8-Jul-08 4:27
protectorChristian Graus8-Jul-08 4:27 
GeneralRe: how to disable imagebutton ? Pin
kathyani8-Jul-08 4:29
kathyani8-Jul-08 4:29 
GeneralRe: how to disable imagebutton ? Pin
Christian Graus8-Jul-08 4:54
protectorChristian Graus8-Jul-08 4:54 
GeneralRe: how to disable imagebutton ? Pin
kathyani8-Jul-08 4:59
kathyani8-Jul-08 4:59 
iam having the 1 to 11 pages .
Previous and Next image buttons .
If iam in First Page PREVIOUS IMAGE BUTTON should be disable.
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
if (this.PageNumber == 1)
{

Response.Redirect("pge1.aspx");
ImageButton1.Enabled = false;
ImageButton2.Enabled = true;

}
else
{

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

}
}
protected void ImageButton2_Click(object sender, ImageClickEventArgs e)
{
if (this.PageNumber == 11)
{
//ImageButton1.Enabled = true;
//ImageButton2.Enabled = false;
//lnkNext.Enabled = false;
Response.Redirect("pge11.aspx");
}
else
{
ImageButton1.Enabled = true;
this.PageNumber += 1;

Response.Redirect("pge" + this.PageNumber.ToString() + ".aspx");

}

}
GeneralRe: how to disable imagebutton ? Pin
Christian Graus8-Jul-08 5:11
protectorChristian Graus8-Jul-08 5:11 
GeneralRe: how to disable imagebutton ? Pin
Christian Graus9-Jul-08 1:17
protectorChristian Graus9-Jul-08 1:17 
GeneralRe: how to disable imagebutton ? Pin
Michael Bookatz8-Jul-08 4:54
Michael Bookatz8-Jul-08 4:54 
GeneralRe: how to disable imagebutton ? Pin
Christian Graus8-Jul-08 5:12
protectorChristian Graus8-Jul-08 5:12 
Questionadd javascript function for whole page Pin
eyeseetee8-Jul-08 3:35
eyeseetee8-Jul-08 3:35 
AnswerRe: add javascript function for whole page Pin
Christian Graus8-Jul-08 4:30
protectorChristian Graus8-Jul-08 4:30 
GeneralRe: add javascript function for whole page Pin
eyeseetee8-Jul-08 4:46
eyeseetee8-Jul-08 4:46 
GeneralRe: add javascript function for whole page Pin
Christian Graus8-Jul-08 4:55
protectorChristian Graus8-Jul-08 4:55 
GeneralRe: add javascript function for whole page Pin
eyeseetee8-Jul-08 5:07
eyeseetee8-Jul-08 5:07 
AnswerRe: add javascript function for whole page Pin
Sherin Iranimose8-Jul-08 4:37
Sherin Iranimose8-Jul-08 4:37 
GeneralRe: add javascript function for whole page Pin
eyeseetee8-Jul-08 4:52
eyeseetee8-Jul-08 4:52 
GeneralRe: add javascript function for whole page Pin
eyeseetee8-Jul-08 5:07
eyeseetee8-Jul-08 5:07 
QuestionThe underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel Pin
Bluebamboo8-Jul-08 2:46
Bluebamboo8-Jul-08 2:46 
QuestionProblem saving a resized image - HELP!! Pin
Member 34028868-Jul-08 2:38
Member 34028868-Jul-08 2:38 
AnswerRe: Problem saving a resized image - HELP!! Pin
windhopper8-Jul-08 2:46
windhopper8-Jul-08 2:46 
GeneralRe: Problem saving a resized image - HELP!! Pin
Member 34028868-Jul-08 2:52
Member 34028868-Jul-08 2:52 
GeneralRe: Problem saving a resized image - HELP!! Pin
Herman<T>.Instance8-Jul-08 2:55
Herman<T>.Instance8-Jul-08 2:55 

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.