誰かが、マスターページなしで動作するこのコードが、ネストされたマスターページを使用すると動作しない理由を教えてください。必要なjquery jsファイルはベースマスターページで参照されていますjquery uiとasp.netマスターページ
<%@ Page Title="" Language="C#" MasterPageFile="~/Detail.master" AutoEventWireup="true"
CodeBehind="FieldWorkerDetail.aspx.cs" Inherits="FoodVault.Web.WebForms.Admin.FieldWorkerDetail" %>
<%@ Register Assembly="RepeaterPager" Namespace="RepeaterPager" TagPrefix="fv" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<asp:Content ID="Content1" ContentPlaceHolderID="LeftContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<script type="text/javascript"> // a workaround for a flaw in the demo system (http://dev.jqueryui.com/ticket/4375), ignore!
function Show()
{
$("#dialog-message").dialog({
modal: true,
buttons: {
Ok: function() {
$(this).dialog("close");
}
}
});
$("#dialog-message").dialog("open");
}
</script>
<div class="demo">
<input id="Button1" type="button" value="button" onclick="Show()" />
<div id="dialog-message" title="Download complete">
<p>
<span class="ui-icon ui-icon-circle-check" style="float:left; margin:0 7px 50px 0;"></span>
Your files have downloaded successfully into the My Downloads folder.
</p>
<p>
Currently using <b>36% of your storage space</b>.
</p>
</div>
<!-- Sample page content to illustrate the layering of the dialog -->
<div class="hiddenInViewSource" style="padding:20px;">
<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>
<form>
<input value="text input" /><br />
<input type="checkbox" />checkbox<br />
<input type="submit" onclick="Show()" />radio<br />
<select>
<option>select</option>
</select><br /><br />
<textarea>textarea</textarea><br />
</form>
</div><!-- End sample page content -->
</div><!-- End demo -->
具体的に何がエラーであるかについて詳しく説明してください...私たちに推測させないでください:-) –
また、ライブラリを参照している方法についてのあなたのマスターページのサンプルを追加してください。 –
ショーあなたのmasterpageで()関数を使用しますか? – rkw