Click here to Skip to main content
15,911,785 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questiondefault page Pin
mohantfor.net25-Jun-07 1:02
mohantfor.net25-Jun-07 1:02 
AnswerRe: default page Pin
gauthee25-Jun-07 1:09
gauthee25-Jun-07 1:09 
GeneralRe: default page Pin
mohantfor.net25-Jun-07 1:15
mohantfor.net25-Jun-07 1:15 
GeneralRe: default page Pin
gauthee25-Jun-07 1:17
gauthee25-Jun-07 1:17 
GeneralRe: default page Pin
mohantfor.net25-Jun-07 1:21
mohantfor.net25-Jun-07 1:21 
Questionreflection......... Pin
Member 387988125-Jun-07 0:48
Member 387988125-Jun-07 0:48 
AnswerRe: reflection......... Pin
Christian Graus25-Jun-07 0:59
protectorChristian Graus25-Jun-07 0:59 
AnswerRe: reflection......... Pin
Sathesh Sakthivel25-Jun-07 1:10
Sathesh Sakthivel25-Jun-07 1:10 
Reflection is the ability to read metadata at runtime. Using reflection, it is possible to uncover the methods, properties, and events of a type, and to invoke them dynamically. Reflection also allows us to create new types at runtime, but in the upcoming example we will be reading and invoking only.

Reflection generally begins with a call to a method present on every object in the .NET framework: GetType. The GetType method is a member of the System.Object class, and the method returns an instance of System.Type. System.Type is the primary gateway to metadata. System.Type is actually derived from another important class for reflection: the MemeberInfo class from the System.Reflection namespace. MemberInfo is a base class for many other classes who describe the properties and methods of an object, including FieldInfo, MethodInfo, ConstructorInfo, ParameterInfo, and EventInfo among others. As you might suspect from thier names, you can use these classes to inspect different aspects of an object at runtime.



Regards,

Satips.Rose | [Rose]

GeneralRe: reflection......... Pin
Christian Graus25-Jun-07 1:20
protectorChristian Graus25-Jun-07 1:20 
Questionpassword strength Pin
saravanan0525-Jun-07 0:47
saravanan0525-Jun-07 0:47 
AnswerRe: password strength Pin
Christian Graus25-Jun-07 1:03
protectorChristian Graus25-Jun-07 1:03 
GeneralRe: password strength Pin
Sathesh Sakthivel25-Jun-07 1:05
Sathesh Sakthivel25-Jun-07 1:05 
GeneralRe: password strength Pin
Christian Graus25-Jun-07 1:19
protectorChristian Graus25-Jun-07 1:19 
GeneralRe: password strength Pin
Sathesh Sakthivel25-Jun-07 1:28
Sathesh Sakthivel25-Jun-07 1:28 
AnswerRe: password strength Pin
Chetan Ranpariya25-Jun-07 1:04
Chetan Ranpariya25-Jun-07 1:04 
GeneralRe: password strength Pin
Sathesh Sakthivel25-Jun-07 1:07
Sathesh Sakthivel25-Jun-07 1:07 
QuestionHow to send Form details to e-mail?? Pin
ankur010125-Jun-07 0:41
ankur010125-Jun-07 0:41 
AnswerRe: How to send Form details to e-mail?? Pin
PrakashBhaskar25-Jun-07 2:38
PrakashBhaskar25-Jun-07 2:38 
QuestionHow to make Username password page ??? Pin
ankur010125-Jun-07 0:29
ankur010125-Jun-07 0:29 
AnswerRe: How to make Username password page ??? Pin
Chetan Ranpariya25-Jun-07 0:38
Chetan Ranpariya25-Jun-07 0:38 
GeneralRe: How to make Username password page ??? Pin
ankur010125-Jun-07 0:45
ankur010125-Jun-07 0:45 
GeneralRe: How to make Username password page ??? Pin
Chetan Ranpariya25-Jun-07 1:09
Chetan Ranpariya25-Jun-07 1:09 
GeneralRe: How to make Username password page ??? Pin
Sathesh Sakthivel25-Jun-07 1:16
Sathesh Sakthivel25-Jun-07 1:16 
AnswerRe: How to make Username password page ??? Pin
Sathesh Sakthivel25-Jun-07 1:18
Sathesh Sakthivel25-Jun-07 1:18 
GeneralRe: How to make Username password page ??? Pin
ankur010125-Jun-07 1:48
ankur010125-Jun-07 1:48 

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.