Click here to Skip to main content
15,913,709 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Eval_Bind Pin
Richard MacCutchan5-Jun-15 21:28
mveRichard MacCutchan5-Jun-15 21:28 
AnswerRe: Eval_Bind Pin
Richard Deeming7-Jun-15 21:50
mveRichard Deeming7-Jun-15 21:50 
AnswerRe: Eval_Bind Pin
anandkannan858-Jun-15 12:54
anandkannan858-Jun-15 12:54 
AnswerRe: Eval_Bind Pin
User 418025410-Jul-15 11:10
User 418025410-Jul-15 11:10 
AnswerRe: Eval_Bind Pin
wikizhao22-Jul-15 17:17
wikizhao22-Jul-15 17:17 
QuestionHow do I hide some operation contract methods for particular user in WCF? Pin
Manikandan Pandurangan4-Jun-15 1:46
professionalManikandan Pandurangan4-Jun-15 1:46 
SuggestionRe: How do I hide some operation contract methods for particular user in WCF? Pin
Richard Deeming4-Jun-15 2:09
mveRichard Deeming4-Jun-15 2:09 
GeneralRe: How do I hide some operation contract methods for particular user in WCF? Pin
F-ES Sitecore4-Jun-15 21:25
professionalF-ES Sitecore4-Jun-15 21:25 
GeneralOff topic Pin
OriginalGriff5-Jun-15 0:53
mveOriginalGriff5-Jun-15 0:53 
GeneralRe: Off topic Pin
F-ES Sitecore5-Jun-15 1:02
professionalF-ES Sitecore5-Jun-15 1:02 
GeneralRe: Off topic Pin
OriginalGriff5-Jun-15 1:10
mveOriginalGriff5-Jun-15 1:10 
GeneralRe: Off topic Pin
F-ES Sitecore5-Jun-15 1:21
professionalF-ES Sitecore5-Jun-15 1:21 
GeneralRe: Off topic Pin
Richard MacCutchan5-Jun-15 2:34
mveRichard MacCutchan5-Jun-15 2:34 
GeneralRe: Off topic Pin
Richard MacCutchan5-Jun-15 2:34
mveRichard MacCutchan5-Jun-15 2:34 
QuestionGrid view total Pin
Mahima Singh4-Jun-15 0:51
professionalMahima Singh4-Jun-15 0:51 
SuggestionRe: Grid view total Pin
Richard MacCutchan4-Jun-15 0:58
mveRichard MacCutchan4-Jun-15 0:58 
AnswerRe: Grid view total Pin
jkirkerx5-Jun-15 8:36
professionaljkirkerx5-Jun-15 8:36 
Questionthe usual annoying absurdity Pin
tiwal3-Jun-15 22:51
tiwal3-Jun-15 22:51 
AnswerRe: the usual annoying absurdity Pin
F-ES Sitecore3-Jun-15 23:51
professionalF-ES Sitecore3-Jun-15 23:51 
AnswerRe: the usual annoying absurdity Pin
Richard Deeming4-Jun-15 0:34
mveRichard Deeming4-Jun-15 0:34 
Since you haven't provided any code, I'll have to take a guess: your event handler is wired up multiple times.

There are several ways event handlers can be wired to events in ASP.NET; if you've used more than one, then the event will be fired multiple times.
  • If AutoEventWireup[^] is set to "True", methods with names like Page_Load will automatically be wired up to the equivalent event.
  • If you're using VB.NET, adding the Handles clause to a method will wire it up to the specified event.
  • If you have an OnEventName="Handler" attribute in your markup, that method will be wired up to the specified event.
  • If you have a default.aspx.designer.cs / default.aspx.designer.vb file in your project, you might find that it contains code to wire up the event handler.




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


QuestionC# PDF Printing Pin
El Developer3-Jun-15 4:54
El Developer3-Jun-15 4:54 
AnswerRe: C# PDF Printing Pin
F-ES Sitecore3-Jun-15 5:01
professionalF-ES Sitecore3-Jun-15 5:01 
GeneralRe: C# PDF Printing Pin
El Developer3-Jun-15 5:09
El Developer3-Jun-15 5:09 
GeneralRe: C# PDF Printing Pin
F-ES Sitecore3-Jun-15 5:18
professionalF-ES Sitecore3-Jun-15 5:18 
AnswerRe: C# PDF Printing Pin
Richard MacCutchan3-Jun-15 5:20
mveRichard MacCutchan3-Jun-15 5:20 

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.