Posted by
Subhasis Padhy
comments (0)
There are two ways, you can place a javascript in your webpart.Scenario –1Let’s consider, you have a javascript file with some javascript functions. You want to call one of the client side functions inside the webpart code. Here goes the solutionJava script File----------------------------------------------------------------------function do_confirmService(ID){var textbox = document.GetElementByID(ID);alert(textbox.value);}------------------------------------------------------------------------------CodePlace ...