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


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 Files

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

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 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

Zip Codes

We have "orders" that are entered into our database through a data entry web-based application that we've built.Typically,the user enters the city/state/zip code/county. Now they want it to be able to autopopulate the city/state/county based on entering only the Zip Code.

We realize this can be a problem as Zip Codes can overlap different counties/cities/etc.Is there a good way to handle this?Perhaps some kind of control we can use on an ASP page that will read our Zip Code data and handle this somehow?

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

Promotion Codes

I have designed an e-commerce site for a friend and he now wants to add promotional codes to the site t work as follows:

The first 100 users to subscribe to the mailing list will be sent a promotional code be the site owner (via email) entitling them to 25% off their next purchase.

What I want to know is the bet way to implement this using ASP and access and also how to ensure that once a Code has been used by a visitor then it cant be reused again.

View Replies View Related

Action Codes

Having a problem with a page being skipped in the cart. Intermitting problem here. Action code 38 then 47 when this occurs.

View Replies View Related

Including Asp Codes

I have included all the db scripts in asp above the <head> tag and <html> opener tag.When i submit a page, to add a record that record just get doubled and i dont know why that is happening.It dont happen always but now and then. The problem is not with cliking the submit button twice. So all i want to know is if it may be a problem with including the asp codes above the html tag or not?

View Replies View Related

Asp Codes Or Articles

Does anyone have codes or articles related how to make Yahoo-like directory-based serach engine which the categories of the post can be change from one to another, theoretically expandable to unlimited level of directories, etc.

View Replies View Related

Revise Codes

I'm working to revise some code I had the misfortune of inheriting and am hoping someone can either give me a quick explanation or link to some more information. I need to figure out how I can edit a constant.

Specifically, I keep coming across things like
const MN_DIRECTORY=1
const DIR_RESUME_URL=22

and I need to know a.) what the values mean and b.) how I can edit these.

View Replies View Related

Validation Codes

the code for validation? What I'm trying to do is if a person forgets to fill out something on a form...I want a pop up that will remind them what information they forgot to fill in. For example "Please enter your name before submission."

View Replies View Related

How To Log ASP-error Codes?

I would like to write ASP error codes in a log file. Error message would be
for example:

ADODB.Fields error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name
or ordinal.
/ASP-application/page1.asp, line 67

I've learned that it is possible to get some information with the
'err-object' of VB. Unfortunately these codes and descriptions are not that
good as the ones ASP itself generates. First of all I'm interested in the
description ("Item cannot be found in..") and the line in the ASP-Page where
the error occurs.

Does anybody know how to catch this information?

View Replies View Related

Distance Between Two Zip Codes

I am trying to find a software that can find distance between two ZIP codes. I think most of them do it by having the longtitude and latidute of each ZIP, and substract. But this gives the air distance. Where can I find software that find the ground distance (like in Mapquest).

View Replies View Related

Asp/ado/xp_sendmail/return Codes

I have a stored procedure that builds and sends an email using xp_sendmail. It is called after the user makes a change to a form (it tells the support centre that a change has occurred.)

The last bit of my SP is this:
-- It fails if it has no recipient list
if isnull(@recip, '') = '' set @recip = @supportemail

declare @rc int -- have also tried changing it to bit

exec @rc = master..xp_sendmail
@recipients = @supportemail
, @message = @msg
, @subject = @subj
, @no_output = 'False'
, @query = @q
, @width = 200

/*
Return Code Values
0 (success) or 1 (failure)
*/

select @rc
return @rc
If I call it through query analyzer, @rc is 0 and I receive the email.
If I call it through my ASP page (which worked earlier), cint(rs.fields(0)) is -1 and I do not get the email.

strSQL = "exec pr_EmailNotification " & iRequestID
writeline "<P>" & strSQL

set rs = ConnObj.Execute (strSQL)
writeline "<P> Result: " & cint(rs.fields(0)) '0 (success) or 1 (failure)

(All variables are declared.)

It was working earlier, I had proven it... I thought it was the return @rc line that was doing it and was just keeping in select @rc for debugging. When I was ready to move on, I removed my debug statement, and then it started failing. I've put it back in, but it still fails, so I must have also removed something else, or changed something, or something.

I'm at wits end. It still works perfectly through Query Analyzer. But not ASP.

View Replies View Related

Pages Showing Codes In IE

when i try to view an ASP page in my IE web browser, all i see are the codes used to design the page but when i preview 'em in Dreamweaver its okay.Why is it so ?does it mean if i publish my asp pages to the web; thats how they'll be on other people's browsers ?what do i do to be able to see the actual web page and not the codes in an ASP page.

View Replies View Related

Auction Website Codes

Is there any sample codes/projects that does auction website ?

View Replies View Related

Codes To Create Pages

I have created a form with the folowing properties, first name, last name, registration number; course; grade etc I have passed this form to a page to be called create_table.asp, and on submitting the form.

I want this page (create_table) use the info from the form to create tables in an access database (jacko) each time the submit button is pressed with the tables to be named automatically according to the convention fname_lname. I also want to create a page that I can use to edit all the tables in the database can any guru assist me with the required asp codes.

View Replies View Related

Distance Betweeen 2 Zip Codes

anyone knows what the formula is for finding a distance betweeen 2 zip codes?

View Replies View Related

Unable To Figure Out Codes

I'm now doing a project about handphone making a call and sending sms or mms by using vb.net.

But i need to make the button invisible inorber to see the buttons of my phone.when i switch the visible to false.

The button become inactive and i can't even click it. How to make the button active and it is invisible at the same time. Need to figure out the codes fast,running out of time to do the project.

View Replies View Related







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