.NETGURU
client side script
Messages   Related Types
This message was discovered on ASPFriends.com 'aspngclient' list.


George Kaytor
-- Moved from [aspngfreeforall] to [aspngclient] by Yannick Smits <Click here to reveal e-mail address> --

How does one launch a client side script from an asp control?

<script language="vbscript">
sub test
alert "boom"
end sub
</script>

<asp:ImageButton id="ie" name="ie" BorderWidth="0" ImageUrl="images/ie.gif"
Runat="server" />

I've tried adding this right below the imagebutton:
<% ie.attributes.add("onclick", "launchApp") %>

but it didn't work...

thanks,

-g

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

Reply to this message...
 
    
zhi
ie.attributes.add("onclick", "launchApp();")
----- Original Message -----
From: "George Kaytor" <Click here to reveal e-mail address>
To: "aspngclient" <Click here to reveal e-mail address>
Sent: Wednesday, July 10, 2002 1:03 PM
Subject: [aspngclient] client side script

> -- Moved from [aspngfreeforall] to [aspngclient] by Yannick Smits
<Click here to reveal e-mail address> --
[Original message clipped]

-------------------------------------------
Introducing NetZero Long Distance
Unlimited Long Distance only $29.95/ month!
Sign Up Today! www.netzerolongdistance.com

Reply to this message...
 
    
George Kaytor
Still didn't work, no errors but the sub never fires.... This is
frustrating... Shouldn't launching a client side script be easy?

-g

[Original message clipped]

_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com

Reply to this message...
 
    
Jose Fuentes
I always use this
<%response.write("javascript:subtocall();")%>

-----Original Message-----
From: George Kaytor [mailto:Click here to reveal e-mail address]
Sent: Thursday, July 11, 2002 7:28 AM
To: aspngclient
Subject: [aspngclient] Re: client side script

Still didn't work, no errors but the sub never fires.... This is
frustrating... Shouldn't launching a client side script be easy?

-g

[Original message clipped]

_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com

| [aspngclient] member Click here to reveal e-mail address = YOUR ID
| http://www.aspfriends.com/aspfriends/aspngclient.asp = JOIN/QUIT

Reply to this message...
 
    
Peter Brunone
George,

    Could you show us your actual code? The information below appears to be
less than complete.
    When I try adding an attribute to an ImageButton, it works... and I can
fire the script. Here's what I used:

<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(Src As Object, E As EventArgs)
myButt.Attributes.Add("onClick", "closeMe")
End Sub
</script>
<html>
<head>
<script language="vbscript">
Sub closeMe
window.close()
End Sub
</script>
</head>
<body>
<form runat="server">
<asp:ImageButton id="myButt" runat="server" />
</form>
</body>
</html>

Regards,

Peter

|-----Original Message-----
|From: George Kaytor [mailto:Click here to reveal e-mail address]
|
|How does one launch a client side script from an asp control?
|
|<script language="vbscript">
|sub test
| alert "boom"
|end sub
|</script>
|
|<asp:ImageButton id="ie" name="ie" BorderWidth="0"
|ImageUrl="images/ie.gif"
|Runat="server" />
|
|I've tried adding this right below the imagebutton:
|<% ie.attributes.add("onclick", "launchApp") %>
|
|but it didn't work...
|
|thanks,
|
|-g
|

Reply to this message...
 
    
Dot Net Guru Serdar
In your page load of the code behind page add this

If Not IsPostBack Then
    ie.Attributes.Add("onclick", "test()")
End If

Also, your vbscript is incorrect. It should be:

sub test
    msgbox "boom"
end sub

hth

matt

-----Original Message-----
From: George Kaytor [mailto:Click here to reveal e-mail address]
Sent: Wednesday, July 10, 2002 12:03 PM
To: aspngclient
Subject: [aspngclient] client side script

-- Moved from [aspngfreeforall] to [aspngclient] by Yannick Smits
<Click here to reveal e-mail address> --

How does one launch a client side script from an asp control?

<script language="vbscript">
sub test
alert "boom"
end sub
</script>

<asp:ImageButton id="ie" name="ie" BorderWidth="0" ImageUrl="images/ie.gif"
Runat="server" />

I've tried adding this right below the imagebutton:
<% ie.attributes.add("onclick", "launchApp") %>

but it didn't work...

thanks,

-g

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

| [aspngclient] member Click here to reveal e-mail address = YOUR ID
| http://www.aspfriends.com/aspfriends/aspngclient.asp = JOIN/QUIT

Reply to this message...
 
    
Will Currie
What sub. I thought you wanted to fire a client(javascript) event. What is
produced in your html?

-----Original Message-----
From: George Kaytor [mailto:Click here to reveal e-mail address]
Sent: 11 July 2002 12:28
To: aspngclient
Subject: [aspngclient] Re: client side script

Still didn't work, no errors but the sub never fires.... This is
frustrating... Shouldn't launching a client side script be easy?

-g

[Original message clipped]

_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com

| [aspngclient] member Click here to reveal e-mail address = YOUR ID
| http://www.aspfriends.com/aspfriends/aspngclient.asp = JOIN/QUIT

Reply to this message...
 
    
Carlos Magalhaes
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii">
<META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2652.35">
<TITLE>RE: [aspngclient] Re: client side script</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=3D2>Hi rather try like this.</FONT>
</P>

<P><FONT SIZE=3D2>>>>>>>>>>>CODE =
BEHIND<<<<<<<<<<</FONT>
</P>

<P><FONT SIZE=3D2>MyImageButton_Onclick</FONT>
</P>

<P><FONT SIZE=3D2>MyImageButton.Attributes.Add("href", =
"Email/E-mail.aspx") ' Here you will add this so that the =
parent page remains the "same"</FONT></P>

<P><FONT SIZE=3D2>        Dim =
sScript As String =3D ""</FONT>
<BR><FONT SIZE=3D2>        sScript =
&=3D "<script language=3Djavascript>"</FONT>
<BR><FONT SIZE=3D2>        sScript =
&=3D "Javascript:alert('Hello World');"</FONT>
<BR><FONT SIZE=3D2>        sScript =
&=3D "</script>"</FONT>
<BR><FONT SIZE=3D2>        =
Response.Write(sScript)</FONT>
<BR><FONT SIZE=3D2>End Sub</FONT>
</P>

<P><FONT SIZE=3D2>You wont have to add any event to your button as this =
code will be in your buttons events in your code behind</FONT>
</P>

<P><FONT SIZE=3D2> HTH</FONT>
</P>

<P><FONT SIZE=3D2>Carlos Magalhaes</FONT>
</P>

<P><FONT SIZE=3D2>-----Original Message-----</FONT>
<BR><FONT SIZE=3D2>From: George Kaytor [<A =
HREF=3D"mailto:Click here to reveal e-mail address">mailto:Click here to reveal e-mail address</A>] =
</FONT>
<BR><FONT SIZE=3D2>Sent: Thursday, July 11, 2002 1:28 PM</FONT>
<BR><FONT SIZE=3D2>To: aspngclient</FONT>
<BR><FONT SIZE=3D2>Subject: [aspngclient] Re: client side script</FONT>
</P>

<P><FONT SIZE=3D2>Still didn't work, no errors but the sub never =
fires.... This is </FONT>
<BR><FONT SIZE=3D2>frustrating... Shouldn't launching a client side =
script be easy?</FONT>
</P>

<P><FONT SIZE=3D2>-g</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>>From: "zhi" =
<Click here to reveal e-mail address></FONT>
<BR><FONT SIZE=3D2>>Reply-To: "aspngclient" =
<Click here to reveal e-mail address></FONT>
<BR><FONT SIZE=3D2>>To: "aspngclient" =
<Click here to reveal e-mail address></FONT>
<BR><FONT SIZE=3D2>>Subject: [aspngclient] Re: client side =
script</FONT>
<BR><FONT SIZE=3D2>>Date: Wed, 10 Jul 2002 23:06:46 -0600</FONT>
<BR><FONT SIZE=3D2>></FONT>
<BR><FONT SIZE=3D2>>  ie.attributes.add("onclick", =
"launchApp();")</FONT>
<BR><FONT SIZE=3D2>>----- Original Message -----</FONT>
<BR><FONT SIZE=3D2>>From: "George Kaytor" =
<Click here to reveal e-mail address></FONT>
<BR><FONT SIZE=3D2>>To: "aspngclient" =
<Click here to reveal e-mail address></FONT>
<BR><FONT SIZE=3D2>>Sent: Wednesday, July 10, 2002 1:03 PM</FONT>
<BR><FONT SIZE=3D2>>Subject: [aspngclient] client side script</FONT>
<BR><FONT SIZE=3D2>></FONT>
<BR><FONT SIZE=3D2>></FONT>
<BR><FONT SIZE=3D2>> > -- Moved from [aspngfreeforall] to =
[aspngclient] by Yannick Smits</FONT>
<BR><FONT SIZE=3D2>><Click here to reveal e-mail address> --</FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > How does one launch a client side script =
from an asp control?</FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > <script =
language=3D"vbscript"></FONT>
<BR><FONT SIZE=3D2>> > sub test</FONT>
<BR><FONT SIZE=3D2>> >   alert "boom"</FONT>
<BR><FONT SIZE=3D2>> > end sub</FONT>
<BR><FONT SIZE=3D2>> > </script></FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > <asp:ImageButton id=3D"ie" =
name=3D"ie" BorderWidth=3D"0"</FONT>
<BR><FONT SIZE=3D2>>ImageUrl=3D"images/ie.gif"</FONT>
<BR><FONT SIZE=3D2>> > Runat=3D"server" /></FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > I've tried adding this right below the =
imagebutton:</FONT>
<BR><FONT SIZE=3D2>> > <% =
ie.attributes.add("onclick", "launchApp") =
%></FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > but it didn't work...</FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > thanks,</FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > -g</FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > =
_________________________________________________________________</FONT>=

<BR><FONT SIZE=3D2>> > Chat with friends online, try MSN =
Messenger: <A HREF=3D"http://messenger.msn.com" =
TARGET=3D"_blank">http://messenger.msn.com</A></FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>> > | [aspngclient] member Click here to reveal e-mail address =
=3D YOUR ID</FONT>
<BR><FONT SIZE=3D2>> > | <A =
HREF=3D"http://www.aspfriends.com/aspfriends/aspngclient.asp"" target="_blank">http://www.aspfriends.com/aspfriends/aspngclient.asp"; =
TARGET=3D"_blank">http://www.aspfriends.com/aspfriends/aspngclient.asp</=
A> =3D JOIN/QUIT</FONT>
<BR><FONT SIZE=3D2>> ></FONT>
<BR><FONT SIZE=3D2>></FONT>
<BR><FONT =
SIZE=3D2>>-------------------------------------------</FONT>
<BR><FONT SIZE=3D2>>Introducing NetZero Long Distance</FONT>
<BR><FONT SIZE=3D2>>Unlimited Long Distance only $29.95/ =
month!</FONT>
<BR><FONT SIZE=3D2>>Sign Up Today! =
www.netzerolongdistance.com</FONT>
<BR><FONT SIZE=3D2>></FONT>
<BR><FONT SIZE=3D2>>| [aspngclient] member Click here to reveal e-mail address =3D =
YOUR ID</FONT>
<BR><FONT SIZE=3D2>>| <A =
HREF=3D"http://www.aspfriends.com/aspfriends/aspngclient.asp"" target="_blank">http://www.aspfriends.com/aspfriends/aspngclient.asp"; =
TARGET=3D"_blank">http://www.aspfriends.com/aspfriends/aspngclient.asp</=
A> =3D JOIN/QU</FONT>
</P>

<P><FONT =
SIZE=3D2>_______________________________________________________________=
__</FONT>
<BR><FONT SIZE=3D2>Send and receive Hotmail on your mobile device: <A =
HREF=3D"http://mobile.msn.com" =
TARGET=3D"_blank">http://mobile.msn.com</A></FONT>
</P>
<BR>

<P><FONT SIZE=3D2>| [aspngclient] member Click here to reveal e-mail address =3D YOUR =
ID</FONT>
<BR><FONT SIZE=3D2>| <A =
HREF=3D"http://www.aspfriends.com/aspfriends/aspngclient.asp"" target="_blank">http://www.aspfriends.com/aspfriends/aspngclient.asp"; =
TARGET=3D"_blank">http://www.aspfriends.com/aspfriends/aspngclient.asp</=
A> =3D JOIN/QUIT</FONT>
</P>

</BODY>
</HTML>

-------------------------------------------------------------
This email and any files transmitted are
confidential and intended solely for the
use of the individual or entity to which
they are addressed, whose privacy
should be respected. Any views or
opinions are solely those of the author
and do not necessarily represent those
of the Trencor Group, or any of its
representatives, unless specifically
stated.

Email transmission cannot be guaranteed
to be secure, error free or without virus
contamination. The sender therefore
accepts no liability for any errors or
omissions in the contents of this message,
nor for any virus infection that might result
from opening this message. Trencor is not
responsible in the event of any third party
interception of this email.

If you have received this email in error please notify
Click here to reveal e-mail address For more information about
Trencor, visit www.trencor.net <http://www.trencor.net>

Reply to this message...
 
    
Peter Brunone

    Actually, browser-based vbscript can use the alert() method; it's part of
the window object.

|-----Original Message-----
|From: Dot Net Guru Serdar [mailto:Click here to reveal e-mail address]
|
|In your page load of the code behind page add this
|
|If Not IsPostBack Then
|    ie.Attributes.Add("onclick", "test()")
|End If
|
|Also, your vbscript is incorrect. It should be:
|
|sub test
|    msgbox "boom"
|end sub
|
|hth
|
|matt
|
|-----Original Message-----
|From: George Kaytor [mailto:Click here to reveal e-mail address]
|
|How does one launch a client side script from an asp control?
|
|<script language="vbscript">
|sub test
| alert "boom"
|end sub
|</script>
|
|<asp:ImageButton id="ie" name="ie" BorderWidth="0"
|ImageUrl="images/ie.gif"
|Runat="server" />
|
|I've tried adding this right below the imagebutton:
|<% ie.attributes.add("onclick", "launchApp") %>
|
|but it didn't work...
|
|thanks,
|
|-g
|

Reply to this message...
 
    
George Kaytor
When I place that in code behind, it barfs because it doesn't know what ie
is....

-g

[Original message clipped]

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

Reply to this message...
 
    
George Kaytor
sure...

code behind.......................................................

Public Class my_apps
Inherits System.Web.UI.Page

#Region " Web Form Designer Generated Code "

'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub
InitializeComponent()

End Sub

Private Sub Page_Init(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub

#End Region

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
ie.Attributes.Add("onclick", "test()")
End If
End Sub

End Class

aspx code ...................................................

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="my_apps.aspx.vb"
Inherits="abPortal.my_apps"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>my_apps</title>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie5";>
<script language="vbscript">
            Sub launchApp()
                msgbox("boom")
            End Sub
</script>
</head>
<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
        <form id="frmMain" method="post" runat="server">
            <table width="250">
                <asp:Panel id="panToolBar" BackColor="LightGrey" runat="server">
                    <asp:ImageButton id="ie" BorderWidth="0" ImageUrl="images/ie.gif"
Runat="server" />
                </asp:Panel>
            </table>
</form>
</body>
</html>

thanks,

-h
[Original message clipped]

_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com

Reply to this message...
 
    
Peter Brunone
George,

    It appears that you're adding the onClick event handler and telling it to
run a function called test(), but there is no such function in your
client-side script.

-Peter

|-----Original Message-----
|From: George Kaytor [mailto:Click here to reveal e-mail address]
|
|sure...
|
|code behind.......................................................
|
|Public Class my_apps
| Inherits System.Web.UI.Page
|
|#Region " Web Form Designer Generated Code "
|
| 'This call is required by the Web Form Designer.
| <System.Diagnostics.DebuggerStepThrough()> Private Sub
|InitializeComponent()
|
| End Sub
|
| Private Sub Page_Init(ByVal sender As System.Object, ByVal e As
|System.EventArgs) Handles MyBase.Init
| 'CODEGEN: This method call is required by the Web Form Designer
| 'Do not modify it using the code editor.
| InitializeComponent()
| End Sub
|
|#End Region
|
| Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
|System.EventArgs) Handles MyBase.Load
| 'Put user code to initialize the page here
| If Not IsPostBack Then
| ie.Attributes.Add("onclick", "test()")
| End If
| End Sub
|
|End Class
|
|
|aspx code ...................................................
|
|<%@ Page Language="vb" AutoEventWireup="false"
|Codebehind="my_apps.aspx.vb"
|Inherits="abPortal.my_apps"%>
|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|<html>
| <head>
| <title>my_apps</title>
| <meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
| <meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
| <meta name=vs_defaultClientScript content="JavaScript">
| <meta name=vs_targetSchema
|content="http://schemas.microsoft.com/intellisense/ie5";>
| <script language="vbscript">
|            Sub launchApp()
|                msgbox("boom")
|            End Sub
| </script>
| </head>
| <body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
|        <form id="frmMain" method="post" runat="server">
|            <table width="250">
|                <asp:Panel id="panToolBar"
|BackColor="LightGrey" runat="server">
|                    <asp:ImageButton id="ie"
|BorderWidth="0" ImageUrl="images/ie.gif"
|Runat="server" />
|                </asp:Panel>
|            </table>
| </form>
| </body>
|</html>
|
|
|thanks,
|
|-h
|>From: "Peter Brunone" <Click here to reveal e-mail address>
|>
|>George,
|>
|>    Could you show us your actual code? The information below
|appears to be
|>less than complete.
|>    When I try adding an attribute to an ImageButton, it
|works... and I can
|>fire the script. Here's what I used:
|>
|><%@ Page Language="VB" %>
|><script runat="server">
|>Sub Page_Load(Src As Object, E As EventArgs)
|> myButt.Attributes.Add("onClick", "closeMe")
|>End Sub
|></script>
|><html>
|> <head>
|> <script language="vbscript">
|> Sub closeMe
|> window.close()
|> End Sub
|> </script>
|> </head>
|> <body>
|> <form runat="server">
|> <asp:ImageButton id="myButt" runat="server" />
|> </form>
|> </body>
|></html>
|>
|>Regards,
|>
|>Peter
|>

Reply to this message...
 
    
Dot Net Guru Serdar
You need to have
Protected WithEvents ie As System.Web.UI.WebControls.ImageButton
in your code behind otherwise it won't know what "ie" is. You're probably
getting a Null reference error without it.

hth
matt

-----Original Message-----
From: George Kaytor [mailto:Click here to reveal e-mail address]
Sent: Thursday, July 11, 2002 7:38 AM
To: aspngclient
Subject: [aspngclient] RE: client side script

sure...

code behind.......................................................

Public Class my_apps
Inherits System.Web.UI.Page

#Region " Web Form Designer Generated Code "

'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub
InitializeComponent()

End Sub

Private Sub Page_Init(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub

#End Region

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
ie.Attributes.Add("onclick", "test()")
End If
End Sub

End Class

aspx code ...................................................

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="my_apps.aspx.vb"
Inherits="abPortal.my_apps"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>my_apps</title>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie5";>
<script language="vbscript">
            Sub launchApp()
                msgbox("boom")
            End Sub
</script>
</head>
<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
        <form id="frmMain" method="post" runat="server">
            <table width="250">
                <asp:Panel id="panToolBar"
BackColor="LightGrey" runat="server">
                    <asp:ImageButton id="ie"
BorderWidth="0" ImageUrl="images/ie.gif"
Runat="server" />
                </asp:Panel>
            </table>
</form>
</body>
</html>

thanks,

-h
[Original message clipped]

_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com

| [aspngclient] member Click here to reveal e-mail address = YOUR ID
| http://www.aspfriends.com/aspfriends/aspngclient.asp = JOIN/QUIT

Reply to this message...
 
    
George Kaytor
I'm sorry I crossed up the function names, but it never gets by not knowing
what 'ie' is. It barfs on:

Name 'ie' is not declared.

[Original message clipped]

_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.com

Reply to this message...
 
    
George Kaytor
thanks for the info... I decided to just use the asp:image tag instead to
fire off my sub routine. (I just can't get the asp:imagebutton one to work)
Although onclick is not supposed to be an attribute of the image tag it
works....

-g

[Original message clipped]

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

Reply to this message...
 
 
System.EventArgs
System.Object
System.Web.UI.Page
System.Web.UI.WebControls.ImageButton




ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
Ad


Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification