Files
XPS/project/XPST/test.aspx
T
samuele d0ef050896 update con progetto terminalino
git-svn-id: https://keyhammer.ath.cx/svn/XPS/trunk@114 43c8e981-f90d-406c-a89a-24a2c4268d51
2011-11-04 16:31:49 +00:00

26 lines
797 B
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test.aspx.cs" Inherits="XPST.test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="Scripts/jquery-1.6.2.min.js"type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("input[type='text']:enabled:first").focus();
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="popup">
<asp:TextBox ID="TextBox1" runat="server" Enabled="true"></asp:TextBox><br />
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>