Some reading before Interview

What are the OOPS concepts?
1) Encapsulation: It is the mechanism that binds together code anddata in manipulates, and keeps both safe from outside interference andmisuse. In short it isolates a particular code and data from all othercodes and data. A well-defined interface controls the access to thatparticular code and data.
2) Inheritance: It is the process [...]

Use Regular Expression by JavaScript

Use Regular Expression by JavaScript===============================

1 function validateEmail()

2 {

3 // Value to Validate. Ex. Your EMail Address TextBox

4 var EMailID [...]

Use ICallbackEventHandler in Asp.Net 2.0

Use ICallbackEventHandler in Asp.Net 2.0==================================
For Example, you have page Layout is like this :<META NAME=”Generator” CONTENT=”EditPlus”><META NAME=”Author” CONTENT=””><META NAME=”Keywords” CONTENT=””><META NAME=”Description” CONTENT=””></HEAD>
<BODY><div id=”divResult” runat=”server”></div><br/><input type=”button” value=”Text ICallBack” onclick=”return GetPop()” />
</BODY></HTML>
Steps to Implement ICallbackEventHanler:————————————————-
1. First define string variable in Common section of your code behind (.cs) file.
string _CallBackString;
2. Inherit ICallbackEventHandler in your page.
public partial class Customize [...]