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


ADVERTISEMENT

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

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

Source Code

I am trying to debug some values in production server.I want to print the value of rRes(10),but I don't want to show it in the screen.I just want to show it in the source code but comment out,so that I can look at the value.Is it possible?

Response.Write("rRes(10) = " & rRes(10)) will show the value in the screen,but i want to hide it in the screen but still see the value in the source code.

View Replies View Related

Extracting Source Code

Is there a way of processing an ASP page and placing the resulting HTML
source code into a TEXTAREA on another page?

I have a page that will be generated dynamically from database content.
However, I want a form on another page to have access to the compiled source
code for use in an electronic newsletter.

Manually I would load the dynamic page, view the source and copy it out. I
would then paste it into my form field on the relevant page.

View Replies View Related

How To Get The Source Code For A Web Page

How can i get the source code of a web page through asp code?

View Replies View Related

VBs Source Code Of Calendar

I am in the process of building a web page that allows users to make some resource reservations from the web. I need a source code for a calneder where if the user clicks on a specific day of a specific month a new link will be opened. where can I find this ?

View Replies View Related

Funtion LEN (code Source)

Where I can find the code source for the function len for study ends. As (LEN) with its code was created script of the function. I tried to look for in google but I did not find nothing! Somebody can indicate me one link, site, script?

View Replies View Related

Source Code Is Unavailable

I use Windows 2000 Server and VS6.0 for development. I have switched on ASP debugging in IIS and everything worked fine, I can debug.

But now when I want to debug I always get "Source code is not available for the current statement"So I cannot debug anymore, what is the problem ?

View Replies View Related

Source Code Formatter

I have a couple of rather large ASP projects developed using VB script and the source code in both has not been formatted well. Does anyone know of a tool that can parse the source code files and fix simple things such as indentation, consistent use of case on key words, etc.

I have seen several tools that do this for printing purposes, but nothing that actually reformats the original source code.

View Replies View Related

Hiding ASP Source Code

I have a customer with an extensive intranet which contains a lot of
sensitive company data. The client is concerned that any employee
could download source code back to removable storage and thereby steal
the data.

Printing is considered publicly risky and other capture methods of
visble screens would be too clumsy and outside the capability of most.

So we have been asked to make the source "invisible" or at least
extremely difficult to reveal.

View Replies View Related

IIS Integrated Source Code Control

I want to create a site management (admin) web application in ASP under
W2K/IIS5/FPSE2002. It will be used to modify the content of XML files on the web
site it manages. Any changes require authentication. When a file is to be
modified the operator should check it out so that it is marked for modification,
preventing others to change it. The file is checked in after changes are made.
I'd like to be able to check in/out documents from the web admin using IIS
integrated SCC. Is it possible? Or should I implement my own file management
system?

View Replies View Related

Pages Display Source Code In Browser

I'm just trying to set up a testing server via Dreamweaver that is my local box. HTML works fine and ASP works fine IF there is no js code input. I can save a few images in a table as an ASP page and it works great, but if I try to pull a table from a database, the browser suddenly displays the code, rather than the page.

I've heard some people referring to articles that might address this, but so far I'm not seeing them.

I have .asp files being handled by asp.dll from the internet information services section.

What the heck am I missing? What else should I provide y'all so we can brainstorm this?

View Replies View Related

Source Code For Professional Active Server Pages 3.0

I got this book for some time. I need to download the source code for this
book. However, Wrox, the publisher, does not have download code for this
book. Could anybody suggest any site from where I can get the download of
source code for this book?

View Replies View Related

Split Up Source File

This is not really language specific but more of a source code parsing.
I have a large ASP source file that I like to split up, resulting in separate ASP files, each containing one function and the filename named after that function.
Does anyone know of a tool/script which does this?
PS: I am too lazy to learn Perl/AWK/Python to do this, hence why I believe someone has already written a tool/script to do this. Possibly in C++/etc.

View Replies View Related

Use Text File As Link Source

can i get an example of how to read values from a text file that will be used as links on my page. i'll have a .cvs file ala:

LINK ASP_PAGE
"click me1", "clickme1.asp"
"click me2", "clickme2.asp"
"click me3", "clickme3.asp"

i think i can figure out how to do the read, but need to know how to get it on the page where i need it.

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

ASP File Changes - Drops ASP Code

I have written a classic ASP calendar that has been on my organization's website for a couple of years now, and it has worked fine.

I do all of my writing to files on my hard drive, then when the files are working properly, I upload the files to the server. Therefore, the files on my hard drive should be identical to the ones on the server. This has worked fine in the past - I have had two fully functional calendars, one on my hard drive, the other online. Until now, they both looked and worked identically.

Now, I'm trying to modify the main file, "calendar.asp". It no longer works, and the online copy still works flawlessly. When I looked at the local file (calendar.asp), all of the ASP code had been stripped from the file. Of course, the online copy is still intact and working.

The only editor I have used on these files is Notepad (actually, Notepad ++, an enhanced Notepad). I would understand if I had tried to edit the files with Frontpage (I'm using Frontpage to upload files to the server, but that's all I use it for), but these local files haven't been touched by Frontpage.

What Gives? How can a file selectively remove it's own code and disable itself??!!!

I try exporting the files from the server, and though the server files still have their ASP code, the browser can't find one of the include files, which is plainly in the same folder as the calendar.asp file. The file "adovbs.inc" is no longer reachable from my hard drive, even if I export ALL of the files in the "calendar" folder to my hard drive.

What can be hoseing up my local files, and how can I prevent it? Although I have downloaded ALL of the files from the online copy to my hard drive, why do the files behave differently than they do online? What kind of trickery is this?

View Replies View Related

Load ASP Code From Another File

I am writing a small CMS type system for our intranet at work and I am trying to have a main "index.asp" that does all the work in a template folder and every time I add a new section instead of making a new copy of this file I would like to have some generic "index.asp" file that is nearly empty that just calls the "template/index.asp" file and let's it do the work.

The way each page in the intranet works is by using the same asp file but by having a few configuration files in their directory that point it to different menus, titles etc.

Is there a way to load an asp file from another one? I tried creating an index.asp containing just <!-- #INCLUDE FILE="templates/index.asp"--> but it doesn't seem to do it.

View Replies View Related







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