or
| if (type == "tools") |
| { |
| context.Response.Clear(); |
| context.Response.ContentType = "text/xml"; |
| context.Response.Write(toolsXml); |
| } |
| else if (type == "css") |
| { |
| context.Response.Clear(); |
| context.Response.ContentType = "text/css"; |
| context.Response.Write(cssText); |
| } |


Protected
Sub doEdit(ByVal Sender As Object, ByVal E As Telerik.Web.UI.GridCommandEventArgs)
If E.CommandName.ToUpper = "EDIT" Then
' -- run my code here
End If
End Sub
But as I said, the InPlace grid editing runs as well. How do I disable this?
Cheers,
DGL