, , . javascript ( , , jquery-ui.js, , @Scott!). , @DarthJDG , . script, . , . , . :
<body>
<form id="form1" runat="server">
<div>
<%--came from http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.1.js--%>
<script src="scripts/jquery.js" type="text/javascript"></script>
<%--came from //ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.js--%>
<script src="scripts/jquery-ui.js" type="text/javascript" ></script>
<script type="text/javascript">
$(document).ready(function() {
$("#draggable").draggable({ containment: 'parent' });
});
</script>
<div class="demo" style="height: 500px; width: 500px;">
<div id="draggable">
<p>Drag me around</p>
</div>
</div>
</div>
</form>
</body>