-1
DNNFilePicker 컨트롤을 사용하는 사용자 지정 DNN 모듈을 구축하고 있습니다.Dnnfilepicker 업로드 파일 단추가 등록 된 사용자에게 표시되지 않습니다.
파일 업로드 버튼이 등록 된 사용자가 아닌 수퍼 유저 만 표시하는 이유를 알고 싶습니다.
어떤 코드를 추가해야합니까?
DNNFilePicker 컨트롤을 사용하는 사용자 지정 DNN 모듈을 구축하고 있습니다.Dnnfilepicker 업로드 파일 단추가 등록 된 사용자에게 표시되지 않습니다.
파일 업로드 버튼이 등록 된 사용자가 아닌 수퍼 유저 만 표시하는 이유를 알고 싶습니다.
어떤 코드를 추가해야합니까?
우리는 일반 케이스로 제목을 변경하시기 바랍니다 우리의 사용
<label class="file-upload">
<span><strong>Select file</strong></span>
<asp:FileUpload CssClass="fileuploadcss" ClientIDMode="Static" ID="POdDOc" runat="server" />
</label>
<style type="text/css">
.file-upload
{
overflow: hidden;
display: inline-block;
position: relative;
vertical-align: middle;
text-align: center;/Cosmetics/
border: 1px solid #cfcfcf;
background: #e2e2e2;/Nice if your browser can do it/
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
cursor: pointer;
}
.file-upload:hover
{
background: #e9e9e9;
}
.file-upload.focus
{
outline: 1px solid yellow;
}
.file-upload input
{
position: absolute;
top: 0;
left: 0;
margin: 0;
font-size: 10pt;/Loses tab index in webkit if width is set to 0/
opacity: 0;
filter: alpha(opacity=0);
}
.file-upload strong
{
padding-top: 5px;
font-size: 9pt;
font-weight: normal;
}
.file-upload span
{
position: absolute;
top: 0;
left: 0;
z-index: 100;
display: inline-block;/Adjust button text vertical alignment/
padding-top: 5px;
}
/Adjust the button size/
.file-upload
{
height: 22px;
}
.file-upload, .file-upload span
{
width: 75px;
}
a.dellink
{
color: #e60000;
font-weight: bold;
text-decoration: none;
}
a.dellink:hover
{
color: #ff8040;
font-weight: bold;
text-decoration: none;
}
.customcssspan
{
/*color: #20b5dc;*/
color: Red;
}
.clsHidden
{
display: none;
}
의견을 보내 주셔서 감사합니다. DNN Users 폴더에 업로드 할 수 있도록이 코드를 어떻게 변경합니까? – Tig7r
아래 같은 것을 구현했습니다. 그것은 조금 불쾌합니다. – Carcigenicate