473,399 Members | 3,603 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Can I pass Clietside Objects

Hi Guys,
Couple Questions
1. Is there any way that i can pass client Side Objects to Server Side.

2. Can i validate the data of serverside text boxes / combo box in client
side?

If you know the answers please let me know.

Thanks
Murali
Nov 17 '05 #1
8 2010
1. What do you mean by passing? As object, no you cannot. You can set the
values of various HTML elements, and then access them on the server. For
example, if you have hidden input controls, you can set their value client
side, and then retrieve those values on the server after a post.

2. Yes. Use javascript to get access to the HTML element representing the
textbox, and then just do whatever you need to.

"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hi Guys,
Couple Questions
1. Is there any way that i can pass client Side Objects to Server Side.

2. Can i validate the data of serverside text boxes / combo box in client
side?

If you know the answers please let me know.

Thanks
Murali

Nov 17 '05 #2
Murali:

1. Nope. Thats what makes them "Client Side"
2. Yes, using Javascript and the Form's OnSubmit event. Without knowing more
specifics, thats all I can offer.
--
Elliot M. Rodriguez, MCSD
*** It would take 227 cans of Mountain Dew to kill me***

"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hi Guys,
Couple Questions
1. Is there any way that i can pass client Side Objects to Server Side.

2. Can i validate the data of serverside text boxes / combo box in client
side?

If you know the answers please let me know.

Thanks
Murali

Nov 17 '05 #3
Q1. I got that. I know that in previous version on you cannot do that. I was
wondoring in .Net can we do it or not.

Q2. I mean to say I have <asp:TextBox id="TextBox1"
runat="server"></asp:TextBox>
How do iget this value in javascript.
I cannot see any object with this name because it runs at server.
Is it possible?

"Marina" <zl*******@nospam.hotmail.com> wrote in message
news:uO**************@TK2MSFTNGP12.phx.gbl...
1. What do you mean by passing? As object, no you cannot. You can set the
values of various HTML elements, and then access them on the server. For
example, if you have hidden input controls, you can set their value client
side, and then retrieve those values on the server after a post.

2. Yes. Use javascript to get access to the HTML element representing the
textbox, and then just do whatever you need to.

"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hi Guys,
Couple Questions
1. Is there any way that i can pass client Side Objects to Server Side.

2. Can i validate the data of serverside text boxes / combo box in client side?

If you know the answers please let me know.

Thanks
Murali


Nov 17 '05 #4
Hi

alert(document.forms[0].TextBox1.value);

--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
Q1. I got that. I know that in previous version on you cannot do that. I was wondoring in .Net can we do it or not.

Q2. I mean to say I have <asp:TextBox id="TextBox1"
runat="server"></asp:TextBox>
How do iget this value in javascript.
I cannot see any object with this name because it runs at server.
Is it possible?

"Marina" <zl*******@nospam.hotmail.com> wrote in message
news:uO**************@TK2MSFTNGP12.phx.gbl...
1. What do you mean by passing? As object, no you cannot. You can set the
values of various HTML elements, and then access them on the server. For
example, if you have hidden input controls, you can set their value client side, and then retrieve those values on the server after a post.

2. Yes. Use javascript to get access to the HTML element representing the textbox, and then just do whatever you need to.

"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hi Guys,
Couple Questions
1. Is there any way that i can pass client Side Objects to Server Side.
2. Can i validate the data of serverside text boxes / combo box in

client side?

If you know the answers please let me know.

Thanks
Murali



Nov 17 '05 #5
Thaks for help

What about the events?
Means if it a command button can i write client side click event just like
HTML Controls?

"Vidar Petursson" <th*****@icysoft.com> wrote in message
news:uE**************@tk2msftngp13.phx.gbl...
Hi

alert(document.forms[0].TextBox1.value);

--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
Q1. I got that. I know that in previous version on you cannot do that. I

was
wondoring in .Net can we do it or not.

Q2. I mean to say I have <asp:TextBox id="TextBox1"
runat="server"></asp:TextBox>
How do iget this value in javascript.
I cannot see any object with this name because it runs at server.
Is it possible?

"Marina" <zl*******@nospam.hotmail.com> wrote in message
news:uO**************@TK2MSFTNGP12.phx.gbl...
1. What do you mean by passing? As object, no you cannot. You can set the values of various HTML elements, and then access them on the server. For example, if you have hidden input controls, you can set their value client side, and then retrieve those values on the server after a post.

2. Yes. Use javascript to get access to the HTML element representing the textbox, and then just do whatever you need to.

"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
> Hi Guys,
> Couple Questions
> 1. Is there any way that i can pass client Side Objects to Server Side. >
> 2. Can i validate the data of serverside text boxes / combo box in

client
> side?
>
> If you know the answers please let me know.
>
> Thanks
> Murali
>
>



Nov 17 '05 #6
All .NET controls just get evaluated to plain old HTML. Have you looked at
the rendered HTML? Because you will see that an <asp:Textbox> becomes an
<input>, and so on.

Client side functionality has not changed - it is still just the browser
evaluating HTML and javascript. So everything is the same - client side
events, client side properties, everything.

"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:u7**************@tk2msftngp13.phx.gbl...
Thaks for help

What about the events?
Means if it a command button can i write client side click event just like
HTML Controls?

"Vidar Petursson" <th*****@icysoft.com> wrote in message
news:uE**************@tk2msftngp13.phx.gbl...
Hi

alert(document.forms[0].TextBox1.value);

--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
Q1. I got that. I know that in previous version on you cannot do that.
I
was
wondoring in .Net can we do it or not.

Q2. I mean to say I have <asp:TextBox id="TextBox1"
runat="server"></asp:TextBox>
How do iget this value in javascript.
I cannot see any object with this name because it runs at server.
Is it possible?

"Marina" <zl*******@nospam.hotmail.com> wrote in message
news:uO**************@TK2MSFTNGP12.phx.gbl...
> 1. What do you mean by passing? As object, no you cannot. You can
set the
> values of various HTML elements, and then access them on the server. For > example, if you have hidden input controls, you can set their value

client
> side, and then retrieve those values on the server after a post.
>
> 2. Yes. Use javascript to get access to the HTML element

representing the
> textbox, and then just do whatever you need to.
>
> "Murali Inguva" <mi*****@hotmail.com> wrote in message
> news:%2****************@tk2msftngp13.phx.gbl...
> > Hi Guys,
> > Couple Questions
> > 1. Is there any way that i can pass client Side Objects to Server

Side.
> >
> > 2. Can i validate the data of serverside text boxes / combo box in
client
> > side?
> >
> > If you know the answers please let me know.
> >
> > Thanks
> > Murali
> >
> >
>
>



Nov 17 '05 #7
Pefect..
You helped me one more time
thanks a lot
"Marina" <zl*******@nospam.hotmail.com> wrote in message
news:O0**************@tk2msftngp13.phx.gbl...
All .NET controls just get evaluated to plain old HTML. Have you looked at
the rendered HTML? Because you will see that an <asp:Textbox> becomes an
<input>, and so on.

Client side functionality has not changed - it is still just the browser
evaluating HTML and javascript. So everything is the same - client side
events, client side properties, everything.

"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:u7**************@tk2msftngp13.phx.gbl...
Thaks for help

What about the events?
Means if it a command button can i write client side click event just like
HTML Controls?

"Vidar Petursson" <th*****@icysoft.com> wrote in message
news:uE**************@tk2msftngp13.phx.gbl...
Hi

alert(document.forms[0].TextBox1.value);

--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
> Q1. I got that. I know that in previous version on you cannot do that.
I was
> wondoring in .Net can we do it or not.
>
> Q2. I mean to say I have <asp:TextBox id="TextBox1"
> runat="server"></asp:TextBox>
> How do iget this value in javascript.
> I cannot see any object with this name because it runs at server.
> Is it possible?
>
>
>
> "Marina" <zl*******@nospam.hotmail.com> wrote in message
> news:uO**************@TK2MSFTNGP12.phx.gbl...
> > 1. What do you mean by passing? As object, no you cannot. You can set the
> > values of various HTML elements, and then access them on the
server.
For
> > example, if you have hidden input controls, you can set their

value client
> > side, and then retrieve those values on the server after a post.
> >
> > 2. Yes. Use javascript to get access to the HTML element

representing the
> > textbox, and then just do whatever you need to.
> >
> > "Murali Inguva" <mi*****@hotmail.com> wrote in message
> > news:%2****************@tk2msftngp13.phx.gbl...
> > > Hi Guys,
> > > Couple Questions
> > > 1. Is there any way that i can pass client Side Objects to Server Side.
> > >
> > > 2. Can i validate the data of serverside text boxes / combo box in > client
> > > side?
> > >
> > > If you know the answers please let me know.
> > >
> > > Thanks
> > > Murali
> > >
> > >
> >
> >
>
>



Nov 17 '05 #8
Murali

From the code behind page to attach an event (or any other client side
attribute) to the object:

Button1.Attributes.Add("onClick", "javascript:confirm(""Submit form?"");")

--
S. Justin Gengo
Web Developer / Programmer

Free Code Library At:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:u7**************@tk2msftngp13.phx.gbl...
Thaks for help

What about the events?
Means if it a command button can i write client side click event just like
HTML Controls?

"Vidar Petursson" <th*****@icysoft.com> wrote in message
news:uE**************@tk2msftngp13.phx.gbl...
Hi

alert(document.forms[0].TextBox1.value);

--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Murali Inguva" <mi*****@hotmail.com> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
Q1. I got that. I know that in previous version on you cannot do that.
I
was
wondoring in .Net can we do it or not.

Q2. I mean to say I have <asp:TextBox id="TextBox1"
runat="server"></asp:TextBox>
How do iget this value in javascript.
I cannot see any object with this name because it runs at server.
Is it possible?

"Marina" <zl*******@nospam.hotmail.com> wrote in message
news:uO**************@TK2MSFTNGP12.phx.gbl...
> 1. What do you mean by passing? As object, no you cannot. You can
set the
> values of various HTML elements, and then access them on the server. For > example, if you have hidden input controls, you can set their value

client
> side, and then retrieve those values on the server after a post.
>
> 2. Yes. Use javascript to get access to the HTML element

representing the
> textbox, and then just do whatever you need to.
>
> "Murali Inguva" <mi*****@hotmail.com> wrote in message
> news:%2****************@tk2msftngp13.phx.gbl...
> > Hi Guys,
> > Couple Questions
> > 1. Is there any way that i can pass client Side Objects to Server

Side.
> >
> > 2. Can i validate the data of serverside text boxes / combo box in
client
> > side?
> >
> > If you know the answers please let me know.
> >
> > Thanks
> > Murali
> >
> >
>
>



Nov 17 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: lawrence | last post by:
The following class method is being rejected by the PHP parser. If I change the method paramaters and allow the objects to be passed as copies, then the parser has no problem. Or, if I pass by...
4
by: Gerhard Pretorius | last post by:
ON Win 2003 IIS6, Since yesterday, (12 Aug 2003) for some strange reason, (after installing WindowsServer2003-KB823980-x86-ENU.exe) I cannot pass the Request object to to VB COM DLL. I have...
6
by: Walter | last post by:
Hi, The user has to type his name into input a input field (type = text). This name must be passed to another ASP file. I did this but nothing happened: <form id=ins method="post"...
1
by: Andrés Giraldo | last post by:
Hi! I'm trying to pass trough all the objects of a form but I have some text inputs in a DIV and I have many DIVs like this on my form. I'm doing something like: for (i = 0; i <...
11
by: Vanessa | last post by:
Hi, I would like to know whether there's any way for me to pass an object by reference to another form? Regards Vanessa
110
by: Mr A | last post by:
Hi! I've been thinking about passing parameteras using references instead of pointers in order to emphasize that the parameter must be an object. Exemple: void func(Objec& object); //object...
38
by: Radde | last post by:
HI all, Whats the difference b/w pass by ref and pass by pointer in C++ when ur passing objects as args.. Cheers..
7
by: Zlatko Matiĉ | last post by:
Let's assume that we have a database on some SQL server (let it be MS SQL Server) and that we want to execute some parameterized query as a pass.through query. How can we pass parameters to the...
2
by: Mountain Bikn' Guy | last post by:
It is known that one cannot pass arguments as ref or out in a marshal-by-reference class. My problem is that I have a C DLL (and C# wrapper) that I need to isolate in an AppDomain and then I need...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.