Ask a Question related to ASP.NET Building Controls, Design and Development.
-
henk #1
Client side script ASP.NET
Hi,
How can i eassely add client side script in my code. I have a sort of
TAB control, that works through postbacks but i want the action taken on
the
client side. Thus when i click on a link a panel wil become visible or not
visible..
Thanks Henk
henk Guest
-
Client Side Script interferes with Server Side Script?
I added the form validation script (Java Script) to the head section of my insert records form page which works great when tested but when I submit... -
Client-Side Script for CheckBox Web Control
I'm trying to create a server Web control that renders as a checkbox that has an OnClick event associated with it. I've created a short proof of... -
Client Side Java Script
Hi, am not a ASP.NET programmer, and it seems that i have to learn web development, so i need help learning java script. any links to some... -
client side script with RegisterStartupScript issue
no, you can not control the order the blocks are rendered. you can concat the scripts and register them once. also if you are doing code like: ... -
IIS6 doesn't include client side script
I have several pages where we inlcude client side script using the following syntax. <script type="text/vbscript" language="VBScript"... -
Jacob #2
Re: Client side script ASP.NET
All server controls have an Attributes property where you can set
clientside attributes. "onclick" would be a useful thing for you to
attach to your items.
Afterwards use the ClientscriptManager class (Page.ClientScript) to
register clientside scripts from the server.
henk wrote:> Hi,
>
> How can i eassely add client side script in my code. I have a sort of
> TAB control, that works through postbacks but i want the action taken on
> the
> client side. Thus when i click on a link a panel wil become visible or not
> visible..
>
>
> Thanks HenkJacob Guest
-
Steve C. Orr [MVP, MCSD] #3
Re: Client side script ASP.NET
In this example I have an expanding panel that is shown and hidden via
client side mouse click, with no postback required.
[url]http://www.SteveOrr.net/articles/VisiPanel.aspx[/url]
--
I hope this helps,
Steve C. Orr, MCSD, MVP
[url]http://SteveOrr.net[/url]
"henk" <henkenboukje@versatel.nl> wrote in message
news:ef5b4$44bfd7f7$52adce4b$5411@news.versatel.ne t...> Hi,
>
> How can i eassely add client side script in my code. I have a sort of
> TAB control, that works through postbacks but i want the action taken on
> the
> client side. Thus when i click on a link a panel wil become visible or not
> visible..
>
>
> Thanks Henk
>
Steve C. Orr [MVP, MCSD] Guest



Reply With Quote

