Posted on: 2/14/2014 10:39:31 AM | Views : 642

Dear all,
I have a grid view and on that i have a Linkbutton.
On click of linkbutton i want to open a jquery modal popup.
I did everything possible but its not opening up the modal window. ITS NOT DISPLAYING ANY ERROR MESSAGE ALSO.
I am using VS2008 framework 3.5
Following is my code


.net code
   Protected Sub lnkbtndetails_Click(ByVal sender As Object, ByVal e As System.EventArgs)         Dim lbl As LinkButton = CType(sender, LinkButton)         Dim empno As String = lb.CommandArgument         ScriptManager.RegisterStartupScript(Me, Me.GetType, "showEmpDialog", "showEmpDialog(" & empno& ");", True)     End Sub

html part
<link href="../../Scripts/jquery-ui-1.10.3.custom/css/custom-green/jque ...

Go to the complete details ...