Ask a Question related to ASP.NET General, Design and Development.
-
Markus Stehle #1
Encrypt string for POSTing
Hi all!
I need to POST data from one of my asp.net pages to an external CGI script.
What possibilities do I have to encrypt the data for transmission? Is it
enough to send the data to an SSL secured (https) URL - hoping that this
will encrypt the POSTed data automatically - or do I have to do more?
Regards
Markus
Markus Stehle Guest
-
Encrypt () places punctuation in string
:( I am encrypting a user password just before storing, the decrypting anytime it is retrieved. All works great, except for passwords that where... -
encrypt string in the Web.Config file
hi I want to encrypt the Connection String that is located in the Web.Config file How Can I do it? -
Encrypt String or different approach
Good afternoon, I am building an application that uses ASP .NET, and Blackmoon FTP Server, My plan currently is to automate some user processes... -
Query String - encrypt
All, I often use a querystring in my ASP pages. for example: if val > 1 then Response.redirect "val1.asp?val=1&user=UserID End if Is there a... -
How can I encrypt a string?
hi... How can I encrypt a string and then decrypt it? there are some examples I found but all of them about filestream object I wonder if there... -
Steve C. Orr, MCSD #2
Re: Encrypt string for POSTing
Yes, SSL will encrypt the posted data automatically, so this is probably
your best option.
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Markus Stehle" <markus.stehle@web.de> wrote in message
news:eWOL1tyQDHA.1988@TK2MSFTNGP12.phx.gbl...script.> Hi all!
>
> I need to POST data from one of my asp.net pages to an external CGI> What possibilities do I have to encrypt the data for transmission? Is it
> enough to send the data to an SSL secured (https) URL - hoping that this
> will encrypt the POSTed data automatically - or do I have to do more?
>
> Regards
>
> Markus
>
>
Steve C. Orr, MCSD Guest
-
Thomas Stehle #3
Re: Encrypt string for POSTing
Ok, thanks for your reply. And this will also work when using the .net
WebRequest class to create a new web request for
[url]https://externaldomain.com/cgi-bin/mycgi.cgi[/url], won't it?
If SSL is not supported, which alternatives could I use?
Thanks
Markus
"Steve C. Orr, MCSD" <Steve@Orr.net> schrieb im Newsbeitrag
news:#ywoqe0QDHA.2592@TK2MSFTNGP10.phx.gbl...> Yes, SSL will encrypt the posted data automatically, so this is probably
> your best option.
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> [url]http://Steve.Orr.net[/url]
>
>
> "Markus Stehle" <markus.stehle@web.de> wrote in message
> news:eWOL1tyQDHA.1988@TK2MSFTNGP12.phx.gbl...> script.> > Hi all!
> >
> > I need to POST data from one of my asp.net pages to an external CGI>> > What possibilities do I have to encrypt the data for transmission? Is it
> > enough to send the data to an SSL secured (https) URL - hoping that this
> > will encrypt the POSTed data automatically - or do I have to do more?
> >
> > Regards
> >
> > Markus
> >
> >
>
Thomas Stehle Guest



Reply With Quote

