PAGE 1




PAGE - 1 : Some Golden Inventions




All desirable things in life are either illegal, banned, expensive or Married to someone else!


Don't walk as if you rule the world,
Walk as if you don't care who rules the world!
That's called Attitude . Keep on rocking!










PAGE 1a.  YOU CANNOT ANSWER THESE QUESTIONS. I GUARANTY!                          
                                                                           


Below are four (4) questions. You have to answer them instantly.
You can't take your time; answer all of them immediately.
>> > >Ready?
>> > >
>> > >
>> > >
>> > >First Question:
>> > >
>> > >
>> > >
You are participating in a race. You overtake the second person.
What position are you in?
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
Answer: If you answered that you are first, you are absolutely wrong! If you overtake the second person and you take his place, you are second!
To answer the second question, don't take as much time as you took for the first question.
Second Question: If you overtake the last person, then you are...?
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
Answer: If you answered that you are second to last, you are wrong again. Tell me, how can you overtake the LAST person?!
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
Third Question: Very tricky math! Note: This must be done in your head only. Do NOT use paper and pencil or a calculator.
Try it.
>> > >
>> > >
>> > >
>> > >Take 1000 and add 40 to it. Now add another 1000. Now add 30
Add another 1000. Now add 20. Now add another 1000. Now add 10. What is the total?
>> > >
>> > >
>> > >
>> > >Scroll down for answer..
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >Did you get 5000? The correct answer is actually 4100.
>> > >Don't believe it? Check with your calculator!
Today is definitely not your day. Maybe you will get the last question right?
Mary's father has five daughters: 1. Nana, 2. Nene, 3. Nini, 4. Nono.
What is the name of the fifth daughter?
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
Answer: Nunu?
NO! Of course not. Her name is Mary. Read
the question again

By Paul
 






PAGE-2 :::: The NATURE's CALL




Even If You Like the Above Photo,
You may NOT like THIS NEXT ONE ----->








PAGE-3 :::::: RUSSIAN GIRLS




If you are interested in More Ostriches, DON'T CLICK HERE.
But,For more Russian Girls CLICK HERE.







PAGE-4 :::::  How Pak Attack English 


 






PAGE-5:::: FATHER AND HIS DAUGHTER : MINI STORY



 
One day the Three year old Daughter of Peter was murmuring like this in her sleep :
"God bless Mommy, God bless daddy, God bless Grandma and GOOD BYE GRANDPA."
Peter was confused why she is saying goodbye to grandma.

The next day Grandpa died. Peter thought it was a strange coincidence.


A few months later his daughter was murmuring like this in her sleep :

"God bless Mommy, God Bless daddy and GOOD BYE GRANDMA."

The next day the grandmother died.Peter was astonished.




Several weeks later the girl was talking in her sleep like this:
"God bless Mommy and GOOD BYE DADDY"


Peter practically went into shock. He couldn't sleep all night and got up at the crack of
dawn to go to his office. He was nervous as a cat all day, had lunch sent
in and watched the clock. He figured if he could get by until midnight he would be okay.


He felt safe in the office, so instead of going home at the end of the day he stayed there, looking at his watch and jumping at
every sound.


Finally midnight arrived, he breathed a sigh of relief and went home.

When he got home his wife said "I've never seen you work so late, what's the matter?"

He said "I don't want to talk about it, I've just spent the worst day of my life."

She said "You think you had a bad day, you'll never believe what happened HERE."

He asked "What"??????
     |
     |
     |
     |
     |
     |
     |

She said "This morning our neighbor James suddenly died."



















PAGE-6 ::::: RARE FACTS ABOUT SPIDER





For More Pictures CLICK HERE




============================================================






This is just too beautiful not to share






"Dear God, this year please send clothes for all those poor ladies in Daddy's computer, Amen."



pAuLrAj























vb.net l notes for my personal use

1. A textbox should accept ONLY NUMBERS.; write the code.
selct the textbox1 > keypress > code:
Private sub textBox_keyPress(...)....
   If char.IsNumber(e.keychar)=false then
                  e.handled=true
   End If
End Sub
mmmmmmmmmmmmmmmmmmmmmmmmmmmmm
2. Most of the time, we retrieve only one record from the database and place the values in textboxes.  theres is no need for datatase for this purpose. the simplest code for this purpose is ::::


qs='select * from staff where id=2345'
cmd=new oledbcomand(qs,con)
con.open()
rdr=cmd.executereader(commandBehavior.closeconnection)
if rdr.read() then
      txtbox1.text=rdr("staffname").tostring
      txtbox2.text=rdr("desgn").tostring
end if
con.close()

mmmmmmmmmmmmmmmmmmmmm

code for inserting a record into database:
qs='insert into emp(name) vlaus('ram')"
cmd=new oledbcommand(qs,con)
try
      con.open()
      cmd.enq()
      msgbox("done")
catch ex as exception
       msgbox("error")
finally
       con.close()
end try
=================================
datagrid.aspx.vb
sub page_load....
if not page.ispostback then
    dataBind1()
end if
end sub

sub databind1()
dim da as new odda(cmd)
dim ds as n ew dataset
da.fill(ds)
dg.datasource=ds
dg.databind()
end sub
==========================

all about context menu.
  • it is a tool in toolbox
  • it can be mapped to any label
  • when user rightclick on the label, context menu appears
  • how to map a context menu?
  • drag a context menu and fill the properties
  • drag a lable and set its property>>>>
  • lable1.contextmenu=contextmenu1
=================================
all about track bar
|||||||||||||||||||||U|||||||||||||||||
instead of typing the age inside a textbox, you can slide the slider. and age will be automatically placed in the text box.
Take the trackbar and set its properties like this:
min=0, max=100,intitalvalue=0,smallchange=5,largechange=20,
tickfrquency=10

write code in the scroll event:
textbox1.text=trackbar1.value
====================================
c#code to findout how many records are there in a table:
int getCount()
{
int count;
OdbcConnection con=new OdbcConnection("aaa");
OdbcCommand cmd=new OdbcCommand("bbb");
con.open();
count=(int) cmd.ExecauteScalar();
con.close();
return count;
}
what is aaa? server=(local); database=mydatabase; uids=bs;pwd=sk;
what is bbb? "select count(*) from staff",con

==============================
vb code to find out the number of records in a table:
Private Sub getCout as Int32
Dim con as new odbcconnecation*("aaa")
dim cmd as new odbccommand("bbb")
con.open()
dim count as Int32
count=Inte32.Parse(cmd.executescalar())
con.close()
return count
end sub

what is aaa? server=(local); database=mydatabase; uids=bs;pwd=sk;




what is bbb? "select count(*) from staff",con



=================================
difference between public,priage,friend
public=anybody can call him.
private=anybody from his home ( i.e.class) can call him
friend = any from his village (i.e. project) can call him.
========================================
where to use "nothing'
textbox1.text=Nothing
=====================================




 

Some Lifestyle around the world




































SOME MORE PICTURES....





















My personal Notes on FLASH ACTIONSCRIPTS

1. onRelease, onRollover,function()


mc1.onRelease=function(){
var x=5;trace (x);}

mc1.onRollover=function(){
var y=6;trace (y);} 

on (release){x + = 500; }//when you write inside the clip use on(release)
2.onEnterFrame, How to Move a Clip
onClipEvent(enterFrame)
{
        this._x += 1;}
Note:write this code inside the clip
3. How to decide the initial position of a clip
onClipEvent(load){this._x=200;}
4. Start fast but stop slowly
onClipEvent(load){
     stopPoint=500;}
 onClipEvent(enterFrame){

dist=stopPoint-_x; _x+=dist/5; }


what is _x? It is the x-coordinate of the current location of the clip.
5. _xscale,random()



onClipEvent (load) {
this._x = 50;this._y=200;}
onClipEvent (enterFrame) {
this._xscale = random(20);//_xscale is width 
this._yscale = random(30); //_yscale is height
this._alpha = random(20);this._x = random(40);
this._y = random(30);}
6. some common jobs
1.gotoAndStop(5);
2.gotoAndPlay(6);
3.stop();
4.setProperty(mc1,_x,100);
5.getProperty(mc1,_x);
6.tellTarget("_root/mc1"){gotoAndPlay(5);}
7.getURL("abc.htm");
8.on(KeyPress ""){trace("enter");}
8.on(KeyPress ""){trace("backspace");}

8.on(KeyPress ""){trace("delete");}
8.on(KeyPress "a"){trace("a");}


9.loadVriables();
9.loadVariablesNum();
10.loadMovie();
11.loadMovieNum();
12.y=substring("hello",1,3);
13. y=ord(x);//ascii of x
14. if(x ne "hello"){....}
15.on(release){...}
15.on(press){...}
15.on(click){...}//in mx
15.on(rollOver){...}
15.on(rollOut){...}
16.onclipEvent(load){....}
16.onclipEvent(unload){....}
16.onclipEvent(enterFrame){....}

















































SPIDER HAS 8 EYES (PHOTOS)

SOME FACTS ABOUT  SPIDERs::::::::::::

1. Some spiders have Eight eyes,some have size eyes. some have 4 eyes and some have 2 eyes.

2. Insects are having only 6 legs. But spiders have 8 legs. So spiders are NOT Insects.

3.BLACK WIDOW is the name of a spider. It is poisonous. 



Listener Control

C:> LSNRCTL STATUS


LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 27-MAY-2009 12:31:17



Copyright (c) 1991, 2005, Oracle. All rights reserved.



Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))

STATUS of the LISTENER

------------------------

Alias LISTENER

Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production

Start Date 27-MAY-2009 11:06:27

Uptime 0 days 1 hr. 24 min. 49 sec

Trace Level off

Security ON: Local OS Authentication

SNMP OFF

Default Service XE

Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\listener.ora

Listener Log File C:\oraclexe\app\oracle\product\10.2.0\server\network\log\listener.log

Listening Endpoints Summary...

(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))

(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=bsnlCNN1)(PORT=1521)))

(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))

Services Summary...

Service "CLRExtProc" has 1 instance(s).

Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...

Service "PLSExtProc" has 1 instance(s).

Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...

Service "XEXDB" has 1 instance(s).

Instance "xe", status READY, has 1 handler(s) for this service...

Service "XE_XPT" has 1 instance(s).

Instance "xe", status READY, has 1 handler(s) for this service...

Service "xe" has 1 instance(s).

Instance "xe", status READY, has 1 handler(s) for this service...

The command completed successfully













Step 2: Try to TNSPING the oracle instance from the command prompt:



The result will look like this :



C:>tnsping xe



TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 27-MAY-2009 12:21:56



Copyright (c) 1997, 2005, Oracle. All rights reserved.



Used parameter files:

C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\sqlnet.ora





Used TNSNAMES adapter to resolve the alias

Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST =bsnlCNN1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = xe)))



OK (10 msec)







Step 3: Copy the following code and save it is test.aspx. Make necessary corrections and run it.



<%@ Page Language="C#" Debug="true" AutoEventWireup="true" CodeFile="login.aspx.cs" Inherits="login" %>

<%@ Import NameSpace="System.Data.OracleClient" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<title></title>

</head>

<body>

<form id="form1" runat="server">

<div>

<%

String oradb = "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bsnlCNN1)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=xe)));User Id=CNNlocal;Password=CNN123;";

OracleConnection conn = new OracleConnection(oradb);

conn.Open();

string sql = "select * from master_institute";

OracleCommand cmd = new OracleCommand(sql, conn);



OracleDataReader dr = cmd.ExecuteReader();

dr.Read();



label1.Text = dr["c_institute_name"].ToString();





%>





</div>

<asp:Label ID="label1" runat="server" Text="Label"></asp:Label>

</form>

</body>

</html>









classic asp - add,edit,delete a record (What you want to do model)


This asp code is a single form using which you can add,edit and delete a record. For example, from a select box, you have to select an item like : Add a dept or Edit a Dept or Delete a Dept. based on your selection, the rest of the form will change.

<%



'security


if session("user_group")<>"ADMN" then


response.redirect("../INDEX.ASP?result=Session Timed out. Please login again..")


end if


'end of security


%>


<%


'database connection for oracle


Set MyConn =Server.CreateObject("ADODB.Connection")


MyConn.open="provider=MSDAORA;data source=xe; user id=scott;password=tiger"


' here xe is the instance name


'end of database connection






job_type=Request.QueryString("job_type")


THIS_FILE_NAME="add_edit_delete_view.asp"


'this table emp contains the following fields


'start_date,end_date,emp_name,record_id


%>






<!--CODE FOR ALERT POSTBACK MESSAGE-->


<script>


window.onload=function(){


alert_result_msg();}


</script>


<script language="javascript">


function alert_result_msg(){


if (FormResultMsg.resultMsg.value !=""){


alert(FormResultMsg.resultMsg.value); } }


</script>


<form name="FormResultMsg">


<input type="hidden" name="resultMsg" value="<%=request("result")%>">


</form>


<!--end of CODE FOR ALERT POSTBACK MESSAGE-->






<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">


<html>


<head>


<title>Here goes the Title</title>


<link href="../style_sheet_module/current_style.css" rel="stylesheet">


<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">


</head>


<body>


<%


BACK_FILE_NAME=Request("back_file_name")


If back_file_name <>"" then%>


<a href="<%=back_file_name%>">Back</a><%


End If%>


<!--#include file="../includes/alert_result_msg.inc"-->


<%


sql="select * from emp where section='"& session("section") &"' order by start_date"


set objrs=myconn.execute(sql)


if objrs.eof then


is_eof="yes"


else


is_eof="no"


end if


%>


<center>


<p><font color="#6699FF" size="2" face="Arial, Helvetica, sans-serif"><br>


</font></p>


</center>


<form action="add_edit_delete_view1.asp" method="post">


<input type="hidden" name="section" value="<%=session("section")%>">


<table border=1 cellspacing=0 align=center width="709">






<TR bgcolor=#e7f9fe>


<TD width="106">What you want to do?<td>


<td width="156"> <font color="#E7F9FE">


<select name="job_type" onChange="location.href='add_edit_delete_view.asp?job_type='+this.value">


<option style="font:bold 24px arial" value="">--select--</option>


<%


if job_type="VIEW" then%>


<option style="font:bold 24px arial" selected value="VIEW">VIEW EXISTING ENTRIES</option>


<%


else


%>


<option style="font:bold 24px arial" value="VIEW">VIEW EXISTING ENTRIES</option>


<%


end if


%>






<%


if job_type="ADDNEW" then%>


<option style="font:bold 24px arial" selected value="ADDNEW">ADD A NEW ENTRY</option>


<%


else


%>


<option style="font:bold 24px arial" value="ADDNEW">ADD NEW ENTRY</option>


<%


end if


%>


<%


if job_type="EDIT" then%>


<option style="font:bold 24px arial" selected value="EDIT">EDIT AN ENTRY</option>


<%


else


%>


<option style="font:bold 24px arial" value="EDIT">EDIT AN ENTRY</option>


<%


end if


%>


<%


if job_type="DELETE" then%>


<option style="font:bold 24px arial" selected value="DELETE">DELETE AN ENTRY</option>


<%


else


%>


<option style="font:bold 24px arial" value="DELETE">DELETE AN ENTRY</option>


<%


end if


%>


</select>


</font><td>


</tr>


<%if job_type="EDIT" or job_type="DELETE" or job_type="VIEW" then%>


<tr bgcolor=#e7f9fe>


<td width="106"> Select the Record<td>


<td width="156"> <select style="font:bold 24px arial" name="current_record_id" onChange="location.href='add_edit_delete_view.asp?job_type=<%=request.Querystring("job_type")%>¤t_record_id='+this.value">


<option style="font:bold 24px arial" value="">--Select the Record--</option>


<%


if is_eof="no" then


current_record_id=request.QueryString("current_record_id")


while not objrs.eof


if cint(current_record_id)=cint(objrs("record_id")) then


%>


<option style="font:bold 24px arial" selected value="<%=objrs("record_id")%>"><%=objrs("emp_name")%>(<%=ddmmyy(ObjRs("start_date"))%>)</option>


<%


else


%>


<option style="font:bold 24px arial" value="<%=objrs("record_id")%>"><%=objrs("emp_name")%>(<%=ddmmyy(ObjRs("start_date"))%></option>


<%


end if


objrs.movenext


wend


else


%>


<option value="">--List is Empty--</option>


<%


end if


%>


</select>


<%


if current_record_id <>"" then


set objRsIns=myconn.execute("select * from emp where record_id='"& current_record_id &"'")


if not objRsIns.eof then


start_date=ddmmyy(objRsIns("start_date"))


end_date=ddmmyy(objRsIns("end_date"))


emp_name=objRsIns("emp_name")


record_id=objRsIns("record_id")


objRsIns.close


set objRsIns=nothing


end if


end if


%>


<td>


</tr>


<%


end if


if job_type="VIEW" or job_type="ADDNEW" or job_type="EDIT" or job_type="DELETE" then


%>


<tr>


<td colspan=2 height="8" bgcolor=#1985bd> <td>


</tr>


<tr>


<TD width="106" > 1.Employee Name*<td>


<%


if job_type="VIEW" then%>


<td width="156"> <%=emp_name%><td>


<%else%>


<td width="433"> <input style="font:bold 13px arial;background-color:#ffd0d0" type=text name="emp_name" value="<%=emp_name%>" size="60">


<span style="color:#ff0000;font:bold 20px arial">*</span><td>


<%


end if%>


</tr>


<tr>


<TD width="106">2.Duration*<td>


<%if job_type="VIEW" then%>


<td width="156"><%=start_date%> To <%=end_date%><td>


<%else%>


<td width="433">


From: <input type=text name="start_date" value="<%=start_date%>" size="10" >


To: <input type=text name="end_date" value="<%=end_date%>" size="10" >


<%end if%>


<td>


</tr>


<tr>


<TD colspan=3 align=center>


<%if current_record_id <>"" and job_type="EDIT" then%>


  <input style="background-color:red;color:white;font-weight:bold" type=submit name="submit" value="Save Above Changes">


<%elseif current_record_id <>"" and job_type="DELETE" then%>


  <input style="background-color:red;color:white;font-weight:bold" type=submit name="submit" value="Delete The Above Record">


<%elseif current_record_id="" and job_type="ADDNEW" then%>


  <input style="background-color:red;color:white;font-weight:bold" type=submit name="submit" value="Save The Above Record">


<%elseif current_record_id="" and job_type="" then%>


<%end if%>


<td>


</tr>


<%End If%>


</table>


</form>


</body>


</html>

Configure Broadband Modem


ASP.NET NOTES

Why and When "@" symbol is used in Strings?

string x="c:\abc\hello.txt";

The above line will always create errors.

Because, in c#, the backslash means, it is escape sequence.

So, whenever you want to store a String,

you can store like this:

string x=@"c:\abc\hello.txt";

Here Backslash and other special characters has no meaning at all.


ListBox Lesson 2

Today we are going to learn how to Move the Data From One ListBox to Another?

 

Step 1: Drag and Drop Two ListBoxes,Three Buttons and One TextBox. Right Click on the ListBox1 and ListBox2 and set the property "SelectionMode=Multiple" as shown here:

Step 2: Properly modify the Code of aspx and aspx.cs files as shown here:

Code for ListBoxMove.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ListBoxMove.aspx.cs" Inherits="ListBoxMove" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<table >
<tr>
<td >
<asp:ListBox ID="ListBox1" runat="server"
SelectionMode="Multiple"
style="font-size:25px" Width="100px">
</asp:ListBox>
</td>
<td >
<asp:Button
ID="bnMoveRight"
runat="server"
Text="&gt;&gt;"
onclick="bnMoveRight_Click" />
<br />
<asp:Button
AccessKeyID="bnMoveLeft"
runat="server"
Text="&lt;&lt;"
onclick="bnMoveLeft_Click" />
</td>
<td>
<asp:ListBox
ID="ListBox2"
runat="server"
SelectionMode="Multiple"
style="font-size:25px" onselectedindexchanged="ListBox2_SelectedIndexChanged"
Width="100px">
</asp:ListBox>
</td>
</tr>
</table>

</div>
<asp:TextBox ID="TextBox1"
runat="server">
</asp:TextBox>
<asp:Button
ID="bnInsert"
runat="server"
onclick="bnInsert_Click"
Text="Insert into Box1" />
</form>
</body>
</html>

Code for ListBoxMove.aspx.cs

Note: When you double click on the Button, some of the codes such as "protected void........." will be automatically created. You have to type the inner content only.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class ListBoxMove : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void bnMoveRight_Click(object sender, EventArgs e)
{
for (int i = ListBox1.Items.Count - 1; i >= 0; i--)
{
if (ListBox1.Items[i].Selected)
{
ListBox2.Items.Add(ListBox1.Items[i]);
ListBox1.Items.RemoveAt(i);
}
}

}


protected void bnMoveLeft_Click(object sender, EventArgs e)
{
for (int i = ListBox2.Items.Count - 1; i >= 0; i--)
{
if (ListBox2.Items[i].Selected)
{
ListBox1.Items.Add(ListBox2.Items[i]);
ListBox2.Items.RemoveAt(i);
}
}
}
protected void bnInsert_Click(object sender, EventArgs e)
{
ListBox1.Items.Add(TextBox1.Text);
TextBox1.Text = "";
}

protected void ListBox2_SelectedIndexChanged(object sender, EventArgs e)
{

}
}


Step 2: In the Solution Explorer, Right click on our aspx file and select "View in Browser" :

Step 3: You will get the output like this in Browser:

Step 4: Try to insert some data into Listbox1 as shown here:

Step 5: Click on the Move Button, to move the data from One ListBox to another.

Thank you spending your time here.
If possible you; can leave some comments or suggestions.
Thanks a lot once again.
Google Search
Disclaimer and Copy Right