PAGE1.aspx
<img src="../images/upload-new.png" title="Upload New Documents" id="TestNewUpload"
style="cursor:pointer; margin-left:870px;" href="PAGE2.aspx"/>
$("#TestNewUpload").live('click', function (e) {
var page = $(this).attr("href")
page += "?ID=" + TestID + "&Type =" +1;
var $dialog = $('<div></div>')
.html('<iframe style="border: 0px; " src="' + page + '" width="100%" height="100%"></iframe>')
.dialog({
autoOpen: false,
modal: true,
height: 450,
width: 600,
title: "Upload document",
buttons: {
"Close": function () {
$dialog.dialog('close');
}
},
close: function (event, ui) {
}
});
$dialog.dialog('open');
e.preventDefault();
});
PAGE1 END
PAGE2.aspx
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<asp:PostBackTrigger ControlID="btnUpload" />
</Triggers>
<ContentTemplate>
<div id="divUpload" runat="server">
<table>
<tr><td>Title</td><td>
<asp:TextBox ID="txtTitle" runat="server" MaxLength="99"></asp:TextBox>
</td></tr>
<tr><td>Document</td>
<td><asp:FileUpload ID="fuTestUploads" runat="server" /></td></tr>
<tr><td></td>
<td>
<asp:Button ID="btnUpload" runat="server" Text="Upload" OnClick="btnUpload_Click" />
</td></tr>
</table>
</div>
<div id="divMessage" runat="server" class="centered">
<center>
<span style="font-weight:bold; font-size:15px;"> Document uploaded successfully! </span>
</center>
<br />
<asp:LinkButton ID="lbtnUploadMore" runat="server"
onclick="lbtnUploadMore_Click">Upload More</asp:LinkButton>
</div>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
<div class="centered">
<img src="../images/ajax-loader.gif" alt="" />
Please wait...
</div>
</ProgressTemplate>
</asp:UpdateProgress>
</div>
</form>
//ASPX.CS
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Security.AccessControl;
namespace TESTUI
{
public partial class PAGE2: System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
divMessage.Visible = false;
trDiscipline.Visible = false;
int RegulationType = Convert.ToInt32(Request.QueryString["RegulationType"].ToString());
if (RegulationType == 3)
{
trDiscipline.Visible = true;
}
}
}
private void DisplayMessage(string msg)
{
string strText = "alert('" + msg + "')";
string myScript = String.Format(strText);
ScriptManager.RegisterStartupScript(this, this.GetType(), "MyScript", myScript, true);
}
protected void btnUpload_Click(object sender, EventArgs e)
{
if (!fuTestUploads.HasFile)
{
return;
}
int TestID = Convert.ToInt32(Request.QueryString["TestID"].ToString());
int Type = Convert.ToInt32(Request.QueryString["Type"].ToString());
string Title = txtDocumentTitle.Text;
string FileName = System.IO.Path.GetFileName(fuTestUploads.FileName);
string Extension = System.IO.Path.GetExtension(fuTestUploads.PostedFile.FileName);
int Size = fuTestUploads.PostedFile.ContentLength;
ServiceReference1.OFRTWCFServiceClient Proxy = new ServiceReference1.OFRTWCFServiceClient();
int FileID = Proxy.AddDocument(Title, Type, FileName, Extension, Size, TestID);
if (FileID != 0)
{
string path = Server.MapPath( "~/files/" + FileID.ToString());
//DirectorySecurity scr = new DirectorySecurity(AppDomain.CurrentDomain.BaseDirectory.ToString(), AccessControlSections.All);
System.IO.Directory.CreateDirectory(path);
fuRegulationsUploads.PostedFile.SaveAs(path + "/" + fuTestUploads.PostedFile.FileName);
txtDocumentTitle.Text = string.Empty;
divUpload.Visible = false;
divMessage.Visible = true;
}
}
protected void lbtnUploadMore_Click(object sender, EventArgs e)
{
divUpload.Visible = true;
divMessage.Visible = false;
}
}
}
PAGE2 END
<img src="../images/upload-new.png" title="Upload New Documents" id="TestNewUpload"
style="cursor:pointer; margin-left:870px;" href="PAGE2.aspx"/>
$("#TestNewUpload").live('click', function (e) {
var page = $(this).attr("href")
page += "?ID=" + TestID + "&Type =" +1;
var $dialog = $('<div></div>')
.html('<iframe style="border: 0px; " src="' + page + '" width="100%" height="100%"></iframe>')
.dialog({
autoOpen: false,
modal: true,
height: 450,
width: 600,
title: "Upload document",
buttons: {
"Close": function () {
$dialog.dialog('close');
}
},
close: function (event, ui) {
}
});
$dialog.dialog('open');
e.preventDefault();
});
PAGE1 END
PAGE2.aspx
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<asp:PostBackTrigger ControlID="btnUpload" />
</Triggers>
<ContentTemplate>
<div id="divUpload" runat="server">
<table>
<tr><td>Title</td><td>
<asp:TextBox ID="txtTitle" runat="server" MaxLength="99"></asp:TextBox>
</td></tr>
<tr><td>Document</td>
<td><asp:FileUpload ID="fuTestUploads" runat="server" /></td></tr>
<tr><td></td>
<td>
<asp:Button ID="btnUpload" runat="server" Text="Upload" OnClick="btnUpload_Click" />
</td></tr>
</table>
</div>
<div id="divMessage" runat="server" class="centered">
<center>
<span style="font-weight:bold; font-size:15px;"> Document uploaded successfully! </span>
</center>
<br />
<asp:LinkButton ID="lbtnUploadMore" runat="server"
onclick="lbtnUploadMore_Click">Upload More</asp:LinkButton>
</div>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
<div class="centered">
<img src="../images/ajax-loader.gif" alt="" />
Please wait...
</div>
</ProgressTemplate>
</asp:UpdateProgress>
</div>
</form>
//ASPX.CS
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Security.AccessControl;
namespace TESTUI
{
public partial class PAGE2: System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
divMessage.Visible = false;
trDiscipline.Visible = false;
int RegulationType = Convert.ToInt32(Request.QueryString["RegulationType"].ToString());
if (RegulationType == 3)
{
trDiscipline.Visible = true;
}
}
}
private void DisplayMessage(string msg)
{
string strText = "alert('" + msg + "')";
string myScript = String.Format(strText);
ScriptManager.RegisterStartupScript(this, this.GetType(), "MyScript", myScript, true);
}
protected void btnUpload_Click(object sender, EventArgs e)
{
if (!fuTestUploads.HasFile)
{
return;
}
int TestID = Convert.ToInt32(Request.QueryString["TestID"].ToString());
int Type = Convert.ToInt32(Request.QueryString["Type"].ToString());
string Title = txtDocumentTitle.Text;
string FileName = System.IO.Path.GetFileName(fuTestUploads.FileName);
string Extension = System.IO.Path.GetExtension(fuTestUploads.PostedFile.FileName);
int Size = fuTestUploads.PostedFile.ContentLength;
ServiceReference1.OFRTWCFServiceClient Proxy = new ServiceReference1.OFRTWCFServiceClient();
int FileID = Proxy.AddDocument(Title, Type, FileName, Extension, Size, TestID);
if (FileID != 0)
{
string path = Server.MapPath( "~/files/" + FileID.ToString());
//DirectorySecurity scr = new DirectorySecurity(AppDomain.CurrentDomain.BaseDirectory.ToString(), AccessControlSections.All);
System.IO.Directory.CreateDirectory(path);
fuRegulationsUploads.PostedFile.SaveAs(path + "/" + fuTestUploads.PostedFile.FileName);
txtDocumentTitle.Text = string.Empty;
divUpload.Visible = false;
divMessage.Visible = true;
}
}
protected void lbtnUploadMore_Click(object sender, EventArgs e)
{
divUpload.Visible = true;
divMessage.Visible = false;
}
}
}
PAGE2 END