Click here to Skip to main content
15,895,084 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionproblem with sending Emails. Pin
kavitha_blueindia24-Dec-08 9:11
kavitha_blueindia24-Dec-08 9:11 
AnswerRe: problem with sending Emails. Pin
Christian Graus24-Dec-08 9:22
protectorChristian Graus24-Dec-08 9:22 
GeneralRe: problem with sending Emails. Pin
kavitha_blueindia24-Dec-08 9:41
kavitha_blueindia24-Dec-08 9:41 
GeneralRe: problem with sending Emails. Pin
Not Active24-Dec-08 9:51
mentorNot Active24-Dec-08 9:51 
GeneralRe: problem with sending Emails. Pin
Christian Graus24-Dec-08 10:43
protectorChristian Graus24-Dec-08 10:43 
GeneralRe: problem with sending Emails. Pin
kavitha_blueindia24-Dec-08 11:29
kavitha_blueindia24-Dec-08 11:29 
QuestionHow can we count the button clicks in an asp.net page Pin
.netruler24-Dec-08 7:24
.netruler24-Dec-08 7:24 
AnswerRe: How can we count the button clicks in an asp.net page Pin
.netruler24-Dec-08 9:16
.netruler24-Dec-08 9:16 
Hey i got the solution.. i have used cache concept.
in the page load event i have assigned some value to cache key like this
If(!Page.IsPostBack)
     Cache["Count"] = 0;


then in the button click event i have casted this value to an integer and counting the button clciks. then after incrementing the value of i again assigning it to Cache Key.
Button Click Evet..
int i = (int)Cache["count"];
Label1.Text = i.ToString();
i++;
Cache["count"] = i;

GeneralRe: How can we count the button clicks in an asp.net page Pin
Abhijit Jana24-Dec-08 17:58
professionalAbhijit Jana24-Dec-08 17:58 
GeneralRe: How can we count the button clicks in an asp.net page Pin
Ravifire13-May-11 0:49
Ravifire13-May-11 0:49 
AnswerRe: How can we count the button clicks in an asp.net page Pin
Nishant Singh24-Dec-08 21:19
Nishant Singh24-Dec-08 21:19 
QuestionFinger print recognition based authentication in ASP?? Pin
jaganpro24-Dec-08 5:27
jaganpro24-Dec-08 5:27 
AnswerRe: Finger print recognition based authentication in ASP?? Pin
ToddHileHoffer24-Dec-08 6:03
ToddHileHoffer24-Dec-08 6:03 
AnswerRe: Finger print recognition based authentication in ASP?? Pin
Christian Graus24-Dec-08 9:25
protectorChristian Graus24-Dec-08 9:25 
GeneralRe: Finger print recognition based authentication in ASP?? Pin
jaganpro25-Dec-08 1:53
jaganpro25-Dec-08 1:53 
Questionerror in asp.net application Pin
bapu288924-Dec-08 3:08
bapu288924-Dec-08 3:08 
AnswerRe: error in asp.net application Pin
Abhijit Jana24-Dec-08 3:18
professionalAbhijit Jana24-Dec-08 3:18 
QuestionRe: error in asp.net application Pin
bapu288924-Dec-08 3:25
bapu288924-Dec-08 3:25 
AnswerRe: error in asp.net application Pin
Not Active24-Dec-08 3:38
mentorNot Active24-Dec-08 3:38 
QuestionRe: error in asp.net application Pin
bapu288924-Dec-08 3:41
bapu288924-Dec-08 3:41 
AnswerRe: error in asp.net application [modified] Pin
Abhijit Jana24-Dec-08 4:10
professionalAbhijit Jana24-Dec-08 4:10 
QuestionRe: error in asp.net application Pin
bapu288924-Dec-08 4:08
bapu288924-Dec-08 4:08 
AnswerRe: error in asp.net application Pin
Abhijit Jana24-Dec-08 4:13
professionalAbhijit Jana24-Dec-08 4:13 
QuestionRe: error in asp.net application Pin
bapu288924-Dec-08 4:15
bapu288924-Dec-08 4:15 
AnswerRe: error in asp.net application Pin
Abhijit Jana24-Dec-08 4:19
professionalAbhijit Jana24-Dec-08 4:19 

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.