Posted on December 15, 2007 by abhimjoshi
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 [...]
Filed under: Questions | Leave a Comment »
Posted on December 6, 2007 by abhimjoshi
Use Regular Expression by JavaScript===============================
1 function validateEmail()
2 {
3 // Value to Validate. Ex. Your EMail Address TextBox
4 var EMailID [...]
Filed under: Javascript, Regular Expression, Validation | Leave a Comment »
Posted on December 3, 2007 by abhimjoshi
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 [...]
Filed under: Asp.Net, Javascript | Leave a Comment »