Response title
This is preview!
JQuery Code - GenerateDialog.js:
$(document).ready(function() {
$.ui.dialog.defaults.bgiframe = true;
});
function CreateDialog() {
$("#jDialog").dialog();
}
aspx code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="cDevelopment._Default" %>
<!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 type="text/javascript" src="../js/jquery.min.js"></script>
<script type="text/javascript" src="../js/jqueryui.min.js"></script>
<script type="text/javascript" src="../js/GenerateJDialog.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="b1" runat="server" Text="Button" OnClientClick="CreateDialog()"/>
<div id="jDialog" title="Alert">
</div>
</div>
</form>
</body>
</html>
© 2013 jQuery Foundation
Sponsored by and others.