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

ASP.NET

 
QuestionE-Commerce Site Pin
tmoney10125-Aug-06 0:12
tmoney10125-Aug-06 0:12 
QuestionEventHandler not added when TreeView is created programmatically within if (!IsPostBack) Pin
tengstedt24-Aug-06 23:38
tengstedt24-Aug-06 23:38 
AnswerRe: EventHandler not added when TreeView is created programmatically within if (!IsPostBack) Pin
Mircea Grelus24-Aug-06 23:54
Mircea Grelus24-Aug-06 23:54 
GeneralRe: EventHandler not added when TreeView is created programmatically within if (!IsPostBack) Pin
tengstedt25-Aug-06 0:28
tengstedt25-Aug-06 0:28 
QuestionData type of functions Pin
Kartik Rathi24-Aug-06 23:17
Kartik Rathi24-Aug-06 23:17 
AnswerRe: Data type of functions Pin
Paddy Boyd24-Aug-06 23:24
Paddy Boyd24-Aug-06 23:24 
GeneralRe: Data type of functions Pin
_AK_24-Aug-06 23:29
_AK_24-Aug-06 23:29 
AnswerRe: Data type of functions Pin
Mircea Grelus24-Aug-06 23:27
Mircea Grelus24-Aug-06 23:27 
Creating a function with the same name is called overloading. You can create as many functions as you want with the same name, as long as the parameters are not the same number.
Why do I mean by the same?
You can have two functions with the same number of parameters as long as at least one of them is of a different type than the other definion.

But this will not compile:

public void abc(int m)<br />
{<br />
}<br />
<br />
public int abc(int m)<br />
{<br />
}


because the return type is not part of the function signature. Only the name and the parameters are.

regards,
Mircea
Many people spend their life going to sleep when they’re not sleepy and waking up while they still are.

GeneralRe: Data type of functions Pin
_AK_24-Aug-06 23:29
_AK_24-Aug-06 23:29 
QuestionWhy Different browsers showing different size of asp.net controls? Pin
thomas_joyee24-Aug-06 23:14
thomas_joyee24-Aug-06 23:14 
AnswerRe: Why Different browsers showing different size of asp.net controls? Pin
Mircea Grelus24-Aug-06 23:36
Mircea Grelus24-Aug-06 23:36 
GeneralRe: Why Different browsers showing different size of asp.net controls? Pin
thomas_joyee24-Aug-06 23:50
thomas_joyee24-Aug-06 23:50 
GeneralRe: Why Different browsers showing different size of asp.net controls? Pin
_AK_25-Aug-06 0:00
_AK_25-Aug-06 0:00 
QuestionHow to support different different date formats in web application Pin
Software_Guy_12324-Aug-06 23:04
Software_Guy_12324-Aug-06 23:04 
AnswerRe: How to support different different date formats in web application Pin
_AK_24-Aug-06 23:10
_AK_24-Aug-06 23:10 
GeneralRe: How to support different different date formats in web application Pin
Software_Guy_12325-Aug-06 0:42
Software_Guy_12325-Aug-06 0:42 
GeneralRe: How to support different different date formats in web application Pin
_AK_25-Aug-06 0:48
_AK_25-Aug-06 0:48 
GeneralRe: How to support different different date formats in web application Pin
Software_Guy_12325-Aug-06 1:10
Software_Guy_12325-Aug-06 1:10 
GeneralRe: How to support different different date formats in web application Pin
_AK_25-Aug-06 1:18
_AK_25-Aug-06 1:18 
QuestionCAPTCHA image in ASP Pin
Arghya_mp24-Aug-06 22:59
Arghya_mp24-Aug-06 22:59 
AnswerRe: CAPTCHA image in ASP Pin
Sathesh Sakthivel24-Aug-06 23:18
Sathesh Sakthivel24-Aug-06 23:18 
QuestionVS 2005 Changes my control names... Pin
Amos_Keeto24-Aug-06 21:56
Amos_Keeto24-Aug-06 21:56 
AnswerRe: VS 2005 Changes my control names... Pin
Mircea Grelus24-Aug-06 22:44
Mircea Grelus24-Aug-06 22:44 
GeneralRe: VS 2005 Changes my control names... Pin
Amos_Keeto24-Aug-06 22:52
Amos_Keeto24-Aug-06 22:52 
GeneralRe: VS 2005 Changes my control names... Pin
Mircea Grelus24-Aug-06 23:10
Mircea Grelus24-Aug-06 23:10 

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.