Can we use the java script code in .Net Code behind?

Answers were Sorted based on User's Feedback



Can we use the java script code in .Net Code behind?..

Answer / zikku

yes we can use javascript in code behind.


Define the script block that contains the JavaScript
function. You can add this directly to the HTML of the page.


Insert the script block by the
Page.RegisterStartupScript() or the
Page.RegisterClientScriptBlock() method.

or by using updatepanel by raising an async postback using
JavaScript code

Is This Answer Correct ?    10 Yes 0 No

Can we use the java script code in .Net Code behind?..

Answer / mupnesh

yes we can use java script code.

Is This Answer Correct ?    1 Yes 0 No

Can we use the java script code in .Net Code behind?..

Answer / guest

yes

Is This Answer Correct ?    2 Yes 1 No

Can we use the java script code in .Net Code behind?..

Answer / raj

yes we can use java script code in .Net in code behind

suppose we have a validation on button click event based on id
button1
then

button1.attributes.add("OnClick",retun functionname);

Is This Answer Correct ?    1 Yes 1 No

Can we use the java script code in .Net Code behind?..

Answer / satish v itagi

I have made use of scripts in code behind. My client
wanted cursor to move from one web ui control to another in
a specific order based on the data fed/selected by user.
For eg. after entering specific word in a textbox, cursor
has to focus on save button bypassing all other ui
controls; if another specific word is entered focus should
jump on third ui control skipping the second, so on and so
forth.

User got delighted when the facility was given.

Another case where I implemented was to focus to next
control even after a post back event (otherwise smart
navigation returns focus to the same control after a post
back and use has to press tab key again to set focus to
next ui control).

This facility made my clients again happy.

Of course, it is more worthy to earn clients delight than
weighty pay packet!!!

Ofcourse, I used Page.RegisterStartupScript() and the
Page.RegisterClientScriptBlock() methods!

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

Explain the differences between Server-side and Client-side code?

3 Answers  


Give an example of cookie abuse.

0 Answers  


When an ASP.NET server control is added to a web form, Visual Studio .NET adds one item to the class for the form. What item is added? a) The event registration. b) A protected class member for the control. c) A default event handler for the click event. d) A default class that inherits from the control?s base class.

4 Answers   Syntax Softtech, TCS,


What are the three parts of an http response?

0 Answers  


What is tracing? Where is it used?

0 Answers  






What are the types of assemblies and where can u store them and how ?

1 Answers   Patni,


what are the events in ASP.net page life cycle?

1 Answers  


Define a static class?

0 Answers  


What is the meaning of TestApi?

0 Answers  


Where can i get Latest Microsoft .Net Certification Dumps & what Types of .Net Certifications are there?

2 Answers   Protech,


Differences between “dataset” and “datareader”.

0 Answers  


Webconfig file is cofiguration of server or browser?

10 Answers   Wipro,


Categories