Encrypt Files

how can encript the asp files. It can run on server but the source code is encrypt ....

View Replies


ADVERTISEMENT

How To Encrypt Code And To Learn Encrypt Styles

how to encrypt my code? and do you know which site that i can learn the encrypt style?

View Replies View Related

Encrypt Password

Public Shared Function Encriptar(ByVal cleanString As String) As String
Dim clearBytes As [Byte]()
clearBytes = New UnicodeEncoding().GetBytes(cleanString)
Dim hashedBytes As [Byte]() = CType(CryptoConfig.CreateFromName("MD5"),
HashAlgorithm).ComputeHash(clearBytes)
Dim hashedText As String = BitConverter.ToString(hashedBytes)
Return hashedText
End Function

this function encrypt user password, I need to un-encrypt that password

View Replies View Related

Encrypt Numbers

Can RSA encrypt a sequence of numbers and letters intermingled together.
I was told that RSA can only encrypt letters,i'm not so sure. So can it bge done

View Replies View Related

Encrypt / Decrypt

how i can encrypt something in asp and put it into a database and decrypt it using a key?I want members info and order info in my database to be secure.

View Replies View Related

Encrypt Page URL

i want to encrypt my URL of my site when user process his/her queries he/she see encrypt form of URL and will not seen actual queries, how can i do this in ASP .

View Replies View Related

Encrypt Codes

Does anyone out there know how to encrypt the entire ASP file? That means when a person tries to view my ASP source code, it will display as rubbish. Can't use Script Encoder (srcenc.exe) cause out there in the market exist a freeware Script Decoder (scrdec.exe) which can easily decode back the file to its original state.

View Replies View Related

Encrypt Cookie (password)

Is there a built in fucntion in VBS that encrpyts information? I've never heard of it...

Anyways, I need to encrypt my user's cookie password, and username, so people can't read it very well...i.e. "173dfhal294" etc...

I check it against the database, so I also need to decrypt it also...

Can I make a function? (of course I can, but what would it look like?)

View Replies View Related

Encrypt Text In An Email

After searching the forums have found the following code from 4GuysFromRolla.com to encrypt/decrypt text.

I am having a mare trying to implement it, I know i need a form for the text but am having a mental block with calling the functions..

View Replies View Related

Encrypt Connection String

Can i know how to encrypt and decrypt the connection string which is include with database id and password within the global.asa?

View Replies View Related

Does ASP Have A Built In Encrypt Function?

I am working with an existing script/old server that uses encrypt(whatever) quite often (mostly querystrings), however there is no routine written anywhere in the script for this. no connection to any components or anything...

I didn't know it had a default encypt function (assuming its like base 64 or something)...

View Replies View Related

Encrypt Html Code

I'm looking for asp or java script that encrypt html
code. That it will confuse some surffers that trying
to steal content.

View Replies View Related

Encrypt The Query String Value

When using the QueryString of the request object the actual values are exposed to the viewer of the site and often user pickup on these values and start changing them . This can lead user to see data that they are not supposed to or even data that may be erroneous.

Is there an easy way to encrypt the querystring values that get displayed on the location bar / other than not using querystring. Can I use java script to disable the status bar, at the bottom of the page to not expose the URL's of various links on a page?

View Replies View Related

Query String - Encrypt

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 way to encrypt the querystring so anyone trying to mis use the web site will not know what the encryption stands for also when people view the page source they should not be able to see the QueryString value. How best can I handle this . Using hidden values still expose the value in the page source. Does HTMLEncode help any?

View Replies View Related

Encrypt ASP Source Code

I was wondering does anyone use any third party tool to encrypt the original ASP source code from dispose.

View Replies View Related

Encrypt :: Object Already Exists

I have a problem with asp encrypt. I always encouter this error message when i try to log in my system thru an IP address. The strange thing i that, onli my computer is experiencing this problem. I tried loggin in using another computer, with the same IP address.. and it's sucuessful. Izzit the problem wif my ASP encrypt or wad? The error i have is:

Persits.CryptoManager.1 (0x800A0001)
Object already exists.

View Replies View Related

Encrypt An Asp File Source Code

we have an Enterprise Application on ASP and MS SQL 2000. Would like to know if I can convert the asp app to an exe or encrypt / encode / hide the source code so that no one accessing the server can touch / modify / copy the same.

View Replies View Related

Encrypt & Decrypt Password And Store In MS Access DB

I am trying to encrypt the password and then store in Access DB. I have check out already existing threads on Sitepoint and read the artile at 15second.com (Password Encrypt/Decrypt using MDI ). It works for SQLServer. I tried it. It works..

But i am using MS Access Database, and it doesn't have any binary data type in it. So MDI is not working for me here. I havn't find any help.

I am looking for your help now as i have give it up and this thread is the only hope for me now. I need to Encrypt/Decrypt the password while using Access at backend.

View Replies View Related

Displaying Image From Database Saves Files To Temporary Internet Files

I have a website that we display images we have saved into a SQL Server 2000 database as binary BLOB. This is on a Windows 2003 Server. Just recently (a week ago) this website began to save the images it is displaying on the website as ASP pages in the Temporary Internet Files > IE.Content > Folder.

We have other websites where we use the exact same code and these do not save files on the server when they are displayed.

Here is the code to display the image:
Set rs = objConn.Execute( SQL )
Response.ContentType = "application/octet-stream"
Response.BinaryWrite rs("Product_Image")

SQL is the SQL String to get the image from database

When I add this code:

Response.ContentType = "image/jpeg"

The images still display on the website, but now are saved in the Temporary Internet Files folder as JPG's.

View Replies View Related

Can Php Files Execute Inside Asp Files?

Can a php file be executed inside an asp file? I need to execute a php file in another asp file but i'm not so sure it's possible.
My server can run both asp and php and they run without any problems... I just need to find a way to include the execution results of the php file in the asp one.
Is it possible to use SSI and include the executed php file and then the executed asp file in a main ssi file?

View Replies View Related

Convert ASP Files To Executable Files

I have installed PWS in windows 98 in each of the system at various places and put my Sales program files in the WWWROOT directory in all the branches. I'm afraid that the users may tamper my ASP files. Is there any way of converting .ASP files to .exe files so that the dont see my program.

View Replies View Related

How To Use ASP But Produce HTM Files, Not ASP Files?

I was wondering how some sites let you search by using a form, then present the results as static .htm files.

The reason I ask is that I tend to use ASP to process form information, then give the user a list of results presented on an .asp page. The list is simply drawn from a database in real-time and formatted into a template page.

The problem with this is that search engines can't see any of the information in the database, since they can't do the form submission. Is there a way around this?

View Replies View Related

.exp And .lib Files

When DLLs are compiled in VB, in addition to the dll, there are also
exp and .lib files created. Can somebody tell me what these are for?
Do I need to include them when I deploy my application?

View Replies View Related

PHP Files

I want to include just the result of a PHP file within an ASP file. <--#include won't work, it just imports the text.Is there an alternate way to do this?

View Replies View Related

IIS Log Files

Checking our IIS log files we often get the chinese bots probing our sites. My only concern at the moment is that when an item is called by ID (i.e. select category from table where categoryid = id) and the id is called from either a querystring or a form request, I use CLng (i.e. CLng(request.querystring("id")) to convert the id to a long int to prevent the bots injecting the variable with any non-numeric characters.

View Replies View Related

Ftp Files

how can i do a ftp function to upload and downlaod file to the server without using a 3rd party component?

View Replies View Related

Zip Files

can somebody advise me, how to put a few text files into zip archive on IIS5
on user request on some asp page?

View Replies View Related

ASP Files

IYHO, if I have say 10 different product categories that extract their data
from say 10 text files or an Access DB, is it more efficient to have an ASP
for each product category to query each section or 1 which parses the lot??
The only reason I am asking is for multiple user access I have this strange
belief that if 1 page is getting requested and queried by 10 simultaneous
visitors then 'spreading the load' on different pages would help.
Is my logic correct or do the ISP fairies have this in hand??

View Replies View Related

Pdf Files In ASP

when the user submit a form, all the form data's will be saved
as a pdf file
is it possible?
yes means. by what way we can get this..?
For doing this we have to use any third party tools..?

View Replies View Related

Files

I would like to capture the data from a textarea box and save it to a file.

View Replies View Related

.Inc V/s .Asp Files

i want to know what is the difference between using a .asp include file and .inc include file.I know how an Asp Include file works , but some place i have seen .Inc as Include file. What is the difference?

View Replies View Related

Zip Files And ASP

Does anyone know of a COM object, or if it is possible to display content in the browser of a file in a zip file.

In other words, I have a zip file with like 100 images. I have a script that will knows which zip to look at and what the file name is inside the zip. What I want is to display in my browser the image that is in the zip file .Not sure if this is possible or not, I've been searching the web for a way to do this. Any help would be great.

View Replies View Related

Zip Files

I wanted to know whether we can zip files on the fly without using any
components.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved