Question : I try to trigger java from C# Using AJAX.

I am Using an Image Button, I try to add java to its Click event among the C# code.
I am using Ajax for a local postback.
The AJAX is working fine, but the Java is not triggered from there.

I need to fix it.

I added Code
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:

                 
                        
                   
                
                
                
                   
 
 
 protected void PinkImageButton_Click(object sender, ImageClickEventArgs e)
    {
 
              string String = "";
 
             // Define the name and type of the client scripts on the page.
             String csname1 = "PopupScript";
             String csname2 = "ButtonClickScript";
             Type cstype = this.GetType();
 
             // Get a ClientScriptManager reference from the Page class.
             ClientScriptManager cs = Page.ClientScript;
 
             // Check to see if the client script is already registered.
             if (!cs.IsClientScriptBlockRegistered(cstype, csname2))
             {
                 StringBuilder cstext2 = new StringBuilder();
                 cstext2.Append("
   
   

Random Solutions  
 
programming4us programming4us