<a href="heexternal://http://moreonlineprofit.com"><b>CLICK HERE to Learn More</b></a>
That is a very good question!Gilmichel said:What I mean is that using the private server how is it possible to protect computer from phishing and other malicious programs in an online web page
function OnBeforeNavigate(NewURL, TargetFrame: String): Boolean;
begin
// Before the publication displays a page. Set Result to True to stop the //operation.
if Pos("stopurl", ansilowercase(NewURL)) > 0 then
begin
Result := True;
Exit;
end;
Result := False;
end;
Thank-you !function OnBeforeNavigate(NewURL, TargetFrame: String): Boolean;
begin
// Before the publication displays a page. Set Result to True to stop the //operation.
if Pos(“https”, ansilowercase(NewURL)) < 1 then
begin
Result := True;
Exit;
end;
Result := False;
end;
function OnBeforeNavigate(NewURL, TargetFrame: String): Boolean;
begin
// Convert NewURL to lowercase for case-insensitive comparison
NewURL := AnsiLowerCase(NewURL);
// Block Dropbox, Google, and other specific sites
if (Pos("dropbox", NewURL) > 0) or
(Pos("facebook", NewURL) > 0) then
begin
Result := True; // Block navigation
ShowMessage("Access Denied! This website is blocked.");
Exit;
end;
Result := False; // Allow navigation if URL is not in the blocked list
end;
We use essential cookies to make this site work, and optional cookies to enhance your experience.