• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

My moms website is written in asp...what is this?

niwi7

Golden Member
My mom has a website that she hired a professional to design for her


The professional guy is away and she needs me to replace a picture that is already there with an updated one



I am familiar with HTML, but all her websites extensions are .asp

What is asp????

I am not a programmer or a webpage designer im just a 17 year old kid who knows some HTML and wants to replace a picture so dont flame me if asp is like some basic thing or a diff form of html or obvious or something



thanks
 
Active Server Page, it's a scripting language very similar to Visual Basic Scripting.

Basically it is a script that gets executed whenever someone accesses the page, just like php and cfm files.
 
You can treat the ASP just as HTML as long as you just mess with the HTML code. Don't mess with anything in <% %> or <script> </script> tags
 
well you can kinda cheat.

Found out the filename, extension and location of the original pic and rename the new file to the exact same name and put it back to that same location and overwrite it.
 
In case the name doesn't give it away, the scripting is mainly done on the server, then sent to the user. Look around for the image and just change that without messing with the ASP scripting.
 
ASP was the M$ answer to ColdFusion, a way to redefine the standards for the software that makes a Web server into an application server and circumvent competition. It sort of evolved into .NET.
 
Back
Top