Can we use the java script code in .Net Code behind?
Answers were Sorted based on User's Feedback
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 |
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 |
What is postback and autopostback in asp.net?
What is the difference between the response.write() and response.output.write() methods?
what is diffrent between asp & asp.net
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate?
can u any one tell me clearly where is stored cache datas?
To add a hyperlink column to the DataGrid which tag is used ?
Which @page directive should you create an asynchronous page?
Where sessions are stored in asp.net?
How many time you can fill dataset in asp.net?
What tags do you need to add within the asp:datagrid tags to bind columns manually
Describe the difference between inline and code behind.
What is the procedure to handle the process request using mhpm events fired? : asp.net mvc