string = @"http://192.168.30.40/mylytica/Uploads/EncryptedFile/whg_12_20_2010.pdf";
if (strEncrypt.Contains("/EncryptedFile"))
{
strEncrypt.Replace(@"/EncryptedFile", @"/DecryptedFile");
}
iFrame_pdf.Attributes.Add("src", strEncrypt);
it doesn’t work for me:(
i need to replace the file path Encrypted into Decrypted
thanks in advance
string strEncrypt = @”http://192.168.30.40/mylytica/Uploads/EncryptedFile/whg_12_20_2010.pdf”;
if (strEncrypt.Contains(“EncryptedFile”))
{
strEncrypt = strEncrypt.Replace(@”EncryptedFile”, @”DecryptedFile”);
}