d0ef050896
git-svn-id: https://keyhammer.ath.cx/svn/XPS/trunk@114 43c8e981-f90d-406c-a89a-24a2c4268d51
26 lines
797 B
Plaintext
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>
|