<script type="text/javascript">
function openModal() {
$('#myModal').modal('show');
}
</script>
En su código C#, agregue un evento para el botón de enlace como
protected void lbEdit_Click(object sender, EventArgs e) {
ScriptManager.RegisterStartupScript(this,this.GetType(),"Pop","openModal();", true);
}