<head runat="server">
<title></title>
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/animate-custom.css" />
<script src="jquery/jquery.min.js" type="text/javascript"></script>
<script src="jquery/jquery-ui.js" type="text/javascript"></script>
<link href="css/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="jquery/braviPopup.js" type="text/javascript"></script>
<link href="css/braviStyle.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#accordion" ).accordion();
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#Button5').click(function() {
$.braviPopUp('Follow up!', 'followup_actual.aspx', 600, 400);
});
});
//if you want to refresh parent page on closing of a popup window then remove comment to the below function
//and also call this function from the js file
// function Refresh() {
// window.location.reload();
// }
</script>
<!--
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="/resources/demos/external/jquery.bgiframe-2.1.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script type="text/javascript">
$(document).ready(function() {
$('#Button5').click(function() {
var mydiv = $('#mydiv');
mydiv.dialog({ autoOpen: false });
// Load the content using AJAX
mydiv.load('followup_actual.aspx');
// Open the dialog
mydiv.dialog('open');
return false;
});
});
</script>
-->
</head>
<body>
<div id="MainDiv">
<div class="container" >
<!-- Codrops top bar -->
<div class="codrops-top">
<div class="clr"></div>
</div><!--/ Codrops top bar -->
<header>
</header>
<section>
<div id="container_demo" >
<a class="hiddenanchor" id="toregister"></a>
<a class="hiddenanchor" id="tologin"></a>
<div id="wrapper">
<div id="login" class="animate form" style="margin-left:-200px; margin-top:30px; width:800px; height:800px;">
<form id="form1" runat="server">
<div class="wrapper col1">
<div id="header">
<div id="logo">
</div>
<br class="clear" />
</div>
</div>
<div style="margin-left:650px">
<!--
<div id="topnav">
<ul>
<li><a href="logout.aspx">Log Out</a></li>
</ul>
</div>
-->
<div style="float:left;"> <asp:HyperLink ID="HyperLink1" runat="server">Home</asp:HyperLink> <a href="logout.aspx">Log Out</a></div>
</div>
<h1 style="text-transform:capitalize">Welcome Sales Ex
</h1>
<div style="font-size:small;" id="accordion">
<h3>Make him Update as customer..</h3>
<div>
<p class="login button">
<asp:Button ID="Button3" runat="server"
Text="Update As Customer" onclick="Button3_Click" Width="300px" />
</p>
<br />
</div>
<h3>Follow Up Reminder</h3>
<div >
Follow Ups Till Now:
<p>
<asp:GridView ID="GridView1" runat="server" HeaderStyle-BackColor=Gray HeaderStyle-Font-Italic=true HeaderStyle-Font-Bold=true ItemStyle-Height="30px" align="center">
</asp:GridView>
</p>
Add Reminder:
<input type="button" id="Button5" value="Click Me For Pop Up!" />
<table id="Table2010" runat=server visible=true border="1" cellpadding="0" cellspacing="0" align="center">
<tbody>
<tr>
<td>
Date: Reason Notes<br /></td>
</tr>
<tr>
<td>
<asp:TextBox ID="TextBox3" TextMode="MultiLine" runat="server" Width="90px" Height="63px"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" Height="63px"
TextMode="MultiLine" Width="117px" Enabled="False"></asp:TextBox>
<asp:TextBox ID="TextBox1" runat="server"
Height="63px" TextMode="MultiLine" Width="135px"
ontextchanged="TextBox1_TextChanged"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:RangeValidator ID="RangeValidator1" runat="server" ControlToValidate="TextBox3"
ErrorMessage="RangeValidator" MinimumValue="8/8/2008" MaximumValue="1/1/2014" Text="Enter Correct Date"
Type="Date"></asp:RangeValidator>
<p class="login button">
<asp:Button ID="Button4" runat="server" onclick="Button4_Click" Width="400px"
Text="Add Follow Up Reminder" />
</p>
</td>
</tr>
<tr>
<td>
<div id="divhidden" style="display:none;" align="center">
<asp:TextBox ID="TextBox4" runat="server" TextMode="MultiLine" Width="295px"></asp:TextBox>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div> <!-- acc-->
</form>
<br /><br /><br />
<div id="copyright" align=center>
<p>
copyright
</p>
<br class="clear" />
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</body>
</html>
----------------------------------------
ACTUALLY MY BUTTON5 IS INSIDE MANY OTHER DIV's and i dont know the code to access button5.
pls help