<script type="text/javascript">
function openModal() {
$('#myModal').modal('show');
}
</script>
Nel tuo codice c# aggiungi un evento per linkbutton come
protected void lbEdit_Click(object sender, EventArgs e) {
ScriptManager.RegisterStartupScript(this,this.GetType(),"Pop","openModal();", true);
}