<%@ register tagprefix="Portal" namespace="Harry.Portal.Controls" Assembly="Harry" %>
<%@ register tagprefix="Template" namespace="Harry.Portal.PageTemplates" assembly="Harry" %>
<%@ import namespace="Harry.Portal" %>
<%@ Control CodeBehind="mytraining.ascx.cs" Language="c#" AutoEventWireup="false" Inherits="Harry.Portal.Controls.Training.MyTraining" %>
<% txtSearch.Attributes["onkeypress"] = "testForEnter(event)"; %>
<script>
var winEmployee;
function testForEnter(e)
{
var keycode=e.keyCode? e.keyCode : e.charCode;
if ((keycode == 13))
{
event.cancelBubble = true;
event.returnValue = false;
var data = document.getElementById("<%=btnSearch.UniqueID %>").click();
}
}
</script>
<template:section i ...
Go to the complete details ...