I create a program in C#, I try to make it to run directly from web page; Is it possible??? I'm very thankfully if you have any suggestion to help me
My Code
protected void Browse_Click(object sender, EventArgs e)
{
{
openFileDialog1 ofd = new openFileDialog1();
if (ofd.showdialog()== true)
openFileDialog1.FileName = "";
openFileDialog1.Title = "Choose a file to decrypt";
openFileDialog1.InitialDirectory = @"C:\";
string strFileToEncrypt = "";
string strOutputEncrypt = "";
string strExtension = "";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
strFileToEncrypt = openFileDialog1.FileName;
txtFileToEncrypt.Text = strFileToEncrypt;
int iPosition;
iPosition = strFileToEncrypt.La ...
Go to the complete details ...