Hi i am actually working in a big project in ASPX (c#) and i've got a very weird issue and maybe one of you will put me in the right direction because i've try almost everything before posting here =/
Here's my problem :
In the application the user can manager almost everything, they can add , move and remove sections and they can put many many thing (we called those thing GADGETS) in them. One of our Gadget is a "bookmark tool".
User can mangage their tools, for the bookmark they can add and remove hyperlinks , set title, description, target and parameters.
As we wanted to add some security to our site we decided to hide "parameters" on the hyperlink when users are 'viewing' the Gagdet. (they view and they can mangage it). Some of the parameters can are sensitive (password, user account) and we dont want them to appear on the link, so we created a page UrlRedirect.aspx that we use to redirect to 'hide' the parameters. The link will go to our page, and our page will redirect them to their final destination.
At some point in UrlRedirect there's a Response.Redirect.
It can do something in the end like
Response.Redirect(" , true );
and it works
When http link eveything is working everytime, but users can also use FTP link, and we want them to work too.
But there's a problem with FTP, with a ftp at the end we do something like
Response.Redirect("FTP://ftpserver1234.com/" , true );
ftpserver1234 is a pure exemple in this case
ITS NOT WORKING
After some tests i've been to the conclusion that it's a problem with IE, because when i try the application with firefox IT IS working. With IE there's a "The page cannot be displayed" message. Is there any known issue with IE that somehow happen when you try to redirect from a HTTP page to a FTP site ?
Maybe im missing something =/
Any help will be appreciate.
Thankx
BTW : sorry if my english is kinda bad, its not my main language.
Here's my problem :
In the application the user can manager almost everything, they can add , move and remove sections and they can put many many thing (we called those thing GADGETS) in them. One of our Gadget is a "bookmark tool".
User can mangage their tools, for the bookmark they can add and remove hyperlinks , set title, description, target and parameters.
As we wanted to add some security to our site we decided to hide "parameters" on the hyperlink when users are 'viewing' the Gagdet. (they view and they can mangage it). Some of the parameters can are sensitive (password, user account) and we dont want them to appear on the link, so we created a page UrlRedirect.aspx that we use to redirect to 'hide' the parameters. The link will go to our page, and our page will redirect them to their final destination.
At some point in UrlRedirect there's a Response.Redirect.
It can do something in the end like
Response.Redirect(" , true );
and it works
When http link eveything is working everytime, but users can also use FTP link, and we want them to work too.
But there's a problem with FTP, with a ftp at the end we do something like
Response.Redirect("FTP://ftpserver1234.com/" , true );
ftpserver1234 is a pure exemple in this case
ITS NOT WORKING
Maybe im missing something =/
Any help will be appreciate.
Thankx
BTW : sorry if my english is kinda bad, its not my main language.