CAT | Classic ASP
14
How easy is it to send emails using HTML template
2 Comments · Posted by Administrator in Classic ASP, IT
Most of the time we send emails through our websites, at least one of our web page have that functionality. And most of the time we send simple text and sometimes we make it bit complex by adding html codes to send HTML emails to make it more attractive.
Here I have a quick script which will help you to send email using external HTML Template, no need to write html code in your asp page.
(more…)
classic asp · Email · html · jmail · template
What is SQL Injection?
SQL injection is a type of security exploit in which the attacker adds Structured Query Language (SQL) code to a Web form input box to gain access to resources or make changes to data. An SQL query is a request for some action to be performed on a database. Typically, on a Web form for user authentication, when a user enters their name and password into the text boxes provided for them, those values are inserted into a SELECT query. If the values entered are found as expected, the user is allowed access; if they aren’t found, access is denied. However, most Web forms have no mechanisms in place to block input other than names and passwords. Unless such precautions are taken, an attacker can use the input boxes to send their own request to the database, which could allow them to download the entire database or interact with it in other illicit ways. (more…)
