Click here to Skip to main content
15,905,238 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Free or cheap component to turn HTML to a pdf. Pin
Vasudevan Deepak Kumar23-Aug-07 20:28
Vasudevan Deepak Kumar23-Aug-07 20:28 
QuestionASPX to HTML Pin
mehrdadc4823-Aug-07 8:22
mehrdadc4823-Aug-07 8:22 
AnswerRe: ASPX to HTML Pin
netJP12L23-Aug-07 11:00
netJP12L23-Aug-07 11:00 
GeneralRe: ASPX to HTML Pin
ChrisKo23-Aug-07 12:03
ChrisKo23-Aug-07 12:03 
QuestionButton click event asp.net 2.0 Pin
netJP12L23-Aug-07 7:59
netJP12L23-Aug-07 7:59 
AnswerRe: Button click event asp.net 2.0 Pin
CodyGen23-Aug-07 8:15
CodyGen23-Aug-07 8:15 
GeneralRe: Button click event asp.net 2.0 Pin
netJP12L23-Aug-07 8:49
netJP12L23-Aug-07 8:49 
AnswerRe: Button click event asp.net 2.0 Pin
ChrisKo23-Aug-07 12:34
ChrisKo23-Aug-07 12:34 
Here's what I would do (note: ItemCount is a property I have wired to a Session value, you could easily make it a database driven value).

protected void Button1_Click(object sender, EventArgs e)
{
	ItemCount += 1;

	if (ItemCount == 4)
		Button1.Attributes.Add("onClick", "alert('5 Items');");
	else if (ItemCount == 5)
		Button1.Attributes.Remove("onClick");
}

GeneralRe: Button click event asp.net 2.0 Pin
netJP12L23-Aug-07 20:00
netJP12L23-Aug-07 20:00 
GeneralRe: Button click event asp.net 2.0 Pin
ChrisKo24-Aug-07 7:39
ChrisKo24-Aug-07 7:39 
QuestionNew to ASP.Net Pin
haroon198023-Aug-07 5:54
haroon198023-Aug-07 5:54 
AnswerRe: New to ASP.Net Pin
Christian Graus23-Aug-07 11:06
protectorChristian Graus23-Aug-07 11:06 
AnswerRe: New to ASP.Net Pin
ChrisKo23-Aug-07 12:37
ChrisKo23-Aug-07 12:37 
QuestionASP.net Membership across multiple web applications Pin
fallen donkey23-Aug-07 5:51
fallen donkey23-Aug-07 5:51 
Questionmeaning of Eliminating CSS Image Flicker with IE6 Pin
Harshad Pednekar23-Aug-07 4:09
Harshad Pednekar23-Aug-07 4:09 
AnswerRe: meaning of Eliminating CSS Image Flicker with IE6 Pin
Fred_Smith23-Aug-07 5:30
Fred_Smith23-Aug-07 5:30 
Question.cs and .vb file in the same application Pin
Imran Khan Pathan23-Aug-07 3:50
Imran Khan Pathan23-Aug-07 3:50 
AnswerRe: .cs and .vb file in the same application Pin
kubben23-Aug-07 3:53
kubben23-Aug-07 3:53 
AnswerRe: .cs and .vb file in the same application Pin
Not Active23-Aug-07 3:55
mentorNot Active23-Aug-07 3:55 
GeneralRe: .cs and .vb file in the same application Pin
Colin Angus Mackay23-Aug-07 4:11
Colin Angus Mackay23-Aug-07 4:11 
GeneralRe: .cs and .vb file in the same application Pin
Not Active23-Aug-07 4:43
mentorNot Active23-Aug-07 4:43 
GeneralRe: .cs and .vb file in the same application Pin
Imran Khan Pathan23-Aug-07 18:56
Imran Khan Pathan23-Aug-07 18:56 
GeneralRe: .cs and .vb file in the same application Pin
Virendrak23-Aug-07 23:56
Virendrak23-Aug-07 23:56 
QuestionNewsletter in ASP.NET Pin
.NET- India 23-Aug-07 3:22
.NET- India 23-Aug-07 3:22 
AnswerRe: Newsletter in ASP.NET Pin
Talal Sultan23-Aug-07 4:38
Talal Sultan23-Aug-07 4:38 

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.