Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

BUILD AN APPLICATION

Status
Not open for further replies.

gsc123

Programmer
Jan 24, 2008
197
Hi

Is it possible create and application out my one asp file?
 
You might receive more assistance if you were more specific in your request. Your post is so vague and general, not to mention so large in terms of scope, as to engender no one to spend any time trying to help you. You may find more people willing to help if you do several things:

- Speak to a specific issue that you are encountering and detailing exactly what you need. (I could add that I would ask questions related to a specific technical issue and not just "Can I build an application...")
- Not using CAPS in your subject post as it is considered bad form in a professional technical forum (thereby making you seem non-professional).
- Recognizing that everyone here volunteers their time and knowledge to help others and trying not to ask general questions that require several posts to determine what you need. It will only frustrate others and most likely lead to no real useful assistance to you.

------------------------------------------------------------------------------------------------------------------------
"As for the bureacratic, politically-correct, mollycoddling, asinine, Romper Room antics of...clients and management, just read up on Dilbert. It's not funny - it's a training manual."
- Mike
 
Well I want to build an exe file so noone can see my code or alter it
 
Yes, so no code is visible or an exe
 

faq215-3101 gives all the answers to this one!

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 

... at least if it will be viewed in a browser.

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
What aboput this? I found this in some forum software

<%@ LANGUAGE = VBScript.Encode %>
<%#@~^OgEAAA==@#@&r2DkKxPA6ask1kO@#@&IndaWxknR~E06n.P{P:D

This is a runnable asp page
 
Yeah, and VERY crackable. It only protects your ASP on the server, which no one sees anyway. The final HTML output is still plain HTML.

Lee
 
Thats fine, if I was selling some ASP i dont wan the client to see the code, just run it
 
It's easy to crack, all sorts of help doing that on the Internet. If you want to "protect" things, you'll have to compile them, maybe make a COM DLL and use the COM objects in the ASP page. Other than that, you can't make your code hidden at all.

Lee
 
What Lee is referring to is this:

anyone that can use a computer and type "vbscript encode decode asp" into a search engine as the most obvious keywords can get the very easy answer to 'crack' your 'encryption'... I say those two words in the lightest sense, as they are clearly overstatements in this case.

As Lee also notes - compile into a COM object or change technologies (e.g. ASP.NET etc) or don't allow physical access to the source code (e.g. host it yourself). Sorry, but that's just how it is unfortunately.



A smile is worth a thousand kind words. So smile, it's easy! :)
 
Should I use visual basic instead then?
 
You can if you're familiar with that language and are comfortable with it.

Lee
 
I am... pitty cant use my asp .. is ebays mean runner a project into a dll or visual basic
 

is ebays mean runner a project into a dll or visual basic

rewrite that so it makes sense.

A smile is worth a thousand kind words. So smile, it's easy! :)
 
they have dll to do everything vb or asp? compiled
 
No, they do not use ASP or VB

They mostly use Java on a Websphere JEE application server. Though they did at one point compile everything into a C++ ISAPI DLL.

Here is a brief overview of their architecture:

A smile is worth a thousand kind words. So smile, it's easy! :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top