📄 share_folder.aspx
字号:
<%@ page language="C#" autoeventwireup="true" inherits="Network_Share_folder, App_Web_ne2ojjc7" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script type="text/javascript">
function c_click()
{
if(document.getElementById('RadioButton1').checked==true)
{
document.getElementById('DropDownList1').disabled=false;
document.getElementById('DropDownList2').disabled=true;
}
else
{
document.getElementById('DropDownList1').disabled=true;
document.getElementById('DropDownList2').disabled=false;
}
}
</script>
</head>
<body style=" margin : 0px;background-color:transparent ; width : 100% ; height : 100%" onload="c_click();">
<form id="form1" runat="server">
<table border="0" cellpadding="0" cellspacing="0" style ="width : 100% ; height : 100%" id="table1" runat="server" visible="true">
<tr>
<td style="text-align : left ; vertical-align : top">
选择你想要进行的操作:
<table border="0" cellpadding="0" cellspacing ="0" style=" width : 100%">
<tr>
<td>
<asp:RadioButton ID="RadioButton1" runat="server" GroupName="1" Text="我要将此文件夹设置为共享" Checked="True" onclick ="c_click();"/>
</td>
</tr>
<tr>
<td>
选择要设为共享的网络<asp:DropDownList ID="DropDownList1" runat="server">
</asp:DropDownList>
</td>
</tr>
<tr>
<td>
<asp:RadioButton ID="RadioButton2" runat="server" GroupName="1" Text="我要取消此文件夹的共享" onclick ="c_click();"/>
</td>
</tr>
<tr>
<td>
选择要取消共享的网络<asp:DropDownList ID="DropDownList2" runat="server">
</asp:DropDownList>
</td>
</tr>
</table>
</td>
</tr>
<tr style="background-color:#f0f0f0 ; height : 30px">
<td style="text-align : right">
<asp:Button ID="table1_next" runat="server" Text="确定" OnClick="table1_next_Click"/>
<input id="Button2" type="button" value="取消" onclick="window.parent.yingyong_close();"/>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style ="width : 100% ; height : 100%" id="table2" runat="server" visible="false">
<tr>
<td style="text-align : left ; vertical-align : top">
设置成功
</td>
</tr>
<tr style="background-color:#f0f0f0 ; height : 30px">
<td style="text-align : right">
<input type="button" value="关闭" onclick="window.parent.yingyong_close();"/>
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -