473,670 Members | 2,599 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Adverts on my message board

PW

Hi,

I'm an amateur ASP programmer using ASP, VBScript, IIS and IE.

On one of my websites (www.usaus.org) I have started getting lots of adverts
on my message board. Things like free ringtones, used car sales,
pharmacuticals, etc.

I delete them from time to time but its obvious now that my site is
targetted by somebodies robot.

Is there anyway to stop this?

TIA,
PW
Sep 17 '06 #1
7 4776
Write code to filter the spam ....

If you can post the code for spBoardPost.asp , one of us will probably be
able to do it for you if you can't.

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

"PW" <pw***@SPAMbigp ond.net.auwrote in message
news:uc******** ******@TK2MSFTN GP03.phx.gbl...
>
Hi,

I'm an amateur ASP programmer using ASP, VBScript, IIS and IE.

On one of my websites (www.usaus.org) I have started getting lots of
adverts
on my message board. Things like free ringtones, used car sales,
pharmacuticals, etc.

I delete them from time to time but its obvious now that my site is
targetted by somebodies robot.

Is there anyway to stop this?

TIA,
PW


Sep 17 '06 #2
PW

"Steven Burn" <so*******@in-time.invalidwro te in message
news:eu******** ******@TK2MSFTN GP05.phx.gbl...
Write code to filter the spam ....

If you can post the code for spBoardPost.asp , one of us will probably be
able to do it for you if you can't.

Hi Steven,

Thanks for your reply. No problem posting the code as it belongs to a
public domain message board called simply 'ASPBoard'. I picked it up
somewhere, probably PSC.

How would you go about filtering the spam ? By individual domain or
something?

TIA,
PW

Code below ...

--------------------------------------------------
aspBoardPost.as p
--------------------------------------------------
<%@ Language=VBScri pt %>
<%Option Explicit%>
<%Response.Buff er=True%>
<!--#INCLUDE FILE="aspBoardF unctions.asp"-->
<HTML>
<HEAD>
<%
Dim lngNewId
Dim strMsgLabel
Dim strTitleLabel
Dim strHeaderString
Dim strDetailString

If Request("author _nameStr")<"" Then
With Response
.Cookies("postN ame") = Request("author _nameStr")
.Cookies("postN ame").Expires = DateAdd("yyyy", 1,Date)
.Cookies("postE mail") = Request("author _emailStr")
.Cookies("postE mail").Expires = DateAdd("yyyy", 1,Date)
.Cookies("postU rl") = Request("author _urlStr")
.Cookies("postU rl").Expires = DateAdd("yyyy", 1,Date)
End With
strDetailString = Request("detail Str")
If Request("incOri g") = "yes" Then
strDetailString = strDetailString & aspCrLf & " In response to: " &
aspCrLf & Request("origMs gStr")
End If
lngNewId = AddResponse(Req uest("msgId"), Request("header Str"),
strDetailString , Request("author _nameStr"), Request("author _emailStr") & "",
Request("author _urlStr") & "")
Response.Redire ct "aspBoardDetail .asp?Id=" & lngNewId
End If

If Request.QuerySt ring("Id") 0 Then
strMsgLabel = "Your Response"
strTitleLabel = "Post a Follow-Up to:"
Else
strMsgLabel = "Your Message"
strTitleLabel = "Post a new thread"
End If
%>
<TITLE><%=abTit le%>&nbsp;<%=st rTitleLabel%></TITLE>

</HEAD>

<%
If abBGImage="" Then
If abBGColor <"" Then
Response.Write "<BODY BGCOLOR=""" & abBGColor & """>"
End If
Else
Response.Write "<BODY BACKGROUND=""" & abBGImage & """>"
End If

strHeaderString = GetHeaderString (Request.QueryS tring("Id"), 0)
%>

<CENTER>
<%=GetTitleStri ng%>
<h4><font face="<%=abFont %>"><%=strTitle Label%><br>
<a href="aspBoardD etail.asp?Id=<% =Request.QueryS tring("Id")%>">
<font color="#ff0000" ><%=strHeaderSt ring%></font></a></h4>
</CENTER>

<%
Dim adoRs

strSql="SELECT * FROM msgDetail WHERE msgId = " & Request.QuerySt ring("Id")
Set adoRs=Server.Cr eateObject("ADO DB.Recordset")
adoRS.Open strSql, adoConn, 1

If strHeaderString <abDefaultHeade r Then
strHeaderString = "RE: " & strHeaderString
End If

%>

<center>
<table width="80%" cellpadding="2" cellspacing="2" border="0">
<form method="post" action="aspBoar dPost.asp" id="postForm" name="postForm"
LANGUAGE="javas cript" onsubmit="retur n Submit_onclick( )">
<tr>
<td><font face="<%=abFont %>" size="-1"><b>Your Name:</b></font></td>
<td><input id="author_name Str" name="author_na meStr" type="text"
size="24" Value="<%=Reque st.Cookies("pos tName")%>"></td>
</tr>
<tr>
<td><font face="<%=abFont %>" size="-1"><b>Your Email:</b></font></td>
<td><input id="author_emai lStr" name="author_em ailStr" type="text"
size="24" Value="<%=Reque st.Cookies("pos tEmail")%>"></td>
</tr>
<tr>
<td><font face="<%=abFont %>" size="-1"><b>Your URL:</b></font></td>
<td><input id="author_urlS tr" name="author_ur lStr" type="text" size="24"
Value="<%=Reque st.Cookies("pos tURL")%>"></td>
</tr>
<tr>
<td><font face="<%=abFont %>" size="-1"><b>Subjec t:</b></font></td>
<td><input id="headerStr" name="headerStr " type="text" size="48"
value="<%=strHe aderString%>"></td>
</tr>
<tr>
<td><font face="<%=abFont %>"
size="-1"><b><%=strMsg Label%>:</b></font></td>
<td><textarea cols="48" rows="5" name="detailStr "
id="detailStr"> </textarea></td>
</tr>
<%If Request.QuerySt ring("Id") 0 Then%>
<%If abIncOrigMsg = True Then%>
<tr><td colspan="2">&nb sp;</td></tr>
<tr valign="top">
<td>&nbsp;</td>
<td><input type="checkbox" name="incOrig" Value="yes" CHECKED>
<font face="<%=abFont %>" size="-1"><b>Includ e original message in
response?<br></td>
</tr>
<%End If%>
<tr><td colspan="2">&nb sp;</td></tr>
<tr>
<td>&nbsp;</td>
<td><font face="<%=abFont %>" size="-1">Posted by
<%=adoRs.Fields ("author_nameSt r").Value%>&nbs p;on&nbsp;<%=Fo rmatDateTime(ad oRs.Fields("msg Time").Value,
1)%>&nbsp;at&nb sp;<%=FormatDat eTime(adoRs.Fie lds("msgTime"). Value,
3)%></font></td>
</tr>
<tr>
<td valign="top"><f ont face="<%=abFont %>" size="-1"><b>Origin al
Message:</b></font></td><td><textare a cols="48"
rows="<%=GetRow s(adoRs.Fields( "detailStr").Va lue)%>" id="origMsg1"
name="origMsg1" disabled><%=Rep laceQuotes(adoR s.Fields("detai lStr").Value,
0)%></textarea></td>
</tr>
<input type="hidden" id="origMsgStr " name="origMsgSt r"
value="<%=adoRs .Fields("detail Str").Value%>" >
<%End If%>
<input type="hidden" id="msgId" name="msgId"
value="<%=Reque st.QueryString( "Id")%>">
<tr>
<td colspan="2" align="center">
<input type="submit" value="Post Message" Name="Submit">
</td>
</tr>
</form>
</table>
<br>
</center>
</BODY>
</HTML>

<SCRIPT ID=clientEventH andlersJS LANGUAGE=javasc ript>
<!--

function Submit_onclick( ) {
//check for client side (form) validation

if (Form_Validate( ) == true) {
return true;
} else {
return false;
}

}

//-->
</SCRIPT>

<SCRIPT Language="JavaS cript">

function Form_Validate() {

if (document.postF orm.author_name Str.value==""){
alert("[Your Name] cannot be blank");
return false;
}

if (document.postF orm.author_emai lStr.value=="") {
alert("[Your Email] cannot be blank");
return false;
}

if (document.postF orm.detailStr.v alue==""){
alert("[Your Response] cannot be blank");
return false;
}

return true;
}
</SCRIPT>

Sep 17 '06 #3
Typically, the aspboard.com website no longer exists apparently.

Going on the code you've posted, the function we need to modify
(AddResponse) appears to be located elsewhere (probably the
"aspBoardFuncti ons.asp" include file).
lngNewId = AddResponse(Req uest("msgId"), Request("header Str"),
strDetailString , Request("author _nameStr"), Request("author _emailStr") &
"",
Request("author _urlStr") & "")
The filter will simply involve blocking the use of;

<a
[url
://

The latter of the three (will block all posts with http://, ftp:// etc) can
be avoided if posting URL's is something you want to keep, by modifying the
code to display the URL as text, rather than a hyperlink (about the only way
to keep URL's and not help the spammer at the same time as filtering by
domain, IP etc, is pointless)

If you can send me* a zipped copy of the aspboard files (original's if
possible), or post the AddResponse function, I'll do the modifications for
you and post them here.

If sending them, please send them to;

files /at/ it-mate /dot/ co /dot/ uk

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

"PW" <pw***@SPAMbigp ond.net.auwrote in message
news:Ok******** ******@TK2MSFTN GP03.phx.gbl...
>
"Steven Burn" <so*******@in-time.invalidwro te in message
news:eu******** ******@TK2MSFTN GP05.phx.gbl...
Write code to filter the spam ....

If you can post the code for spBoardPost.asp , one of us will probably be
able to do it for you if you can't.


Hi Steven,

Thanks for your reply. No problem posting the code as it belongs to a
public domain message board called simply 'ASPBoard'. I picked it up
somewhere, probably PSC.

How would you go about filtering the spam ? By individual domain or
something?

TIA,
PW

Code below ...

--------------------------------------------------
aspBoardPost.as p
--------------------------------------------------
<%@ Language=VBScri pt %>
<%Option Explicit%>
<%Response.Buff er=True%>
<!--#INCLUDE FILE="aspBoardF unctions.asp"-->
<HTML>
<HEAD>
<%
Dim lngNewId
Dim strMsgLabel
Dim strTitleLabel
Dim strHeaderString
Dim strDetailString

If Request("author _nameStr")<"" Then
With Response
.Cookies("postN ame") = Request("author _nameStr")
.Cookies("postN ame").Expires = DateAdd("yyyy", 1,Date)
.Cookies("postE mail") = Request("author _emailStr")
.Cookies("postE mail").Expires = DateAdd("yyyy", 1,Date)
.Cookies("postU rl") = Request("author _urlStr")
.Cookies("postU rl").Expires = DateAdd("yyyy", 1,Date)
End With
strDetailString = Request("detail Str")
If Request("incOri g") = "yes" Then
strDetailString = strDetailString & aspCrLf & " In response to: " &
aspCrLf & Request("origMs gStr")
End If
lngNewId = AddResponse(Req uest("msgId"), Request("header Str"),
strDetailString , Request("author _nameStr"), Request("author _emailStr") &
"",
Request("author _urlStr") & "")
Response.Redire ct "aspBoardDetail .asp?Id=" & lngNewId
End If

If Request.QuerySt ring("Id") 0 Then
strMsgLabel = "Your Response"
strTitleLabel = "Post a Follow-Up to:"
Else
strMsgLabel = "Your Message"
strTitleLabel = "Post a new thread"
End If
%>
<TITLE><%=abTit le%>&nbsp;<%=st rTitleLabel%></TITLE>

</HEAD>

<%
If abBGImage="" Then
If abBGColor <"" Then
Response.Write "<BODY BGCOLOR=""" & abBGColor & """>"
End If
Else
Response.Write "<BODY BACKGROUND=""" & abBGImage & """>"
End If

strHeaderString = GetHeaderString (Request.QueryS tring("Id"), 0)
%>

<CENTER>
<%=GetTitleStri ng%>
<h4><font face="<%=abFont %>"><%=strTitle Label%><br>
<a href="aspBoardD etail.asp?Id=<% =Request.QueryS tring("Id")%>">
<font color="#ff0000" ><%=strHeaderSt ring%></font></a></h4>
</CENTER>

<%
Dim adoRs

strSql="SELECT * FROM msgDetail WHERE msgId = " &
Request.QuerySt ring("Id")
Set adoRs=Server.Cr eateObject("ADO DB.Recordset")
adoRS.Open strSql, adoConn, 1

If strHeaderString <abDefaultHeade r Then
strHeaderString = "RE: " & strHeaderString
End If

%>

<center>
<table width="80%" cellpadding="2" cellspacing="2" border="0">
<form method="post" action="aspBoar dPost.asp" id="postForm"
name="postForm"
LANGUAGE="javas cript" onsubmit="retur n Submit_onclick( )">
<tr>
<td><font face="<%=abFont %>" size="-1"><b>Your Name:</b></font></td>
<td><input id="author_name Str" name="author_na meStr" type="text"
size="24" Value="<%=Reque st.Cookies("pos tName")%>"></td>
</tr>
<tr>
<td><font face="<%=abFont %>" size="-1"><b>Your Email:</b></font></td>
<td><input id="author_emai lStr" name="author_em ailStr" type="text"
size="24" Value="<%=Reque st.Cookies("pos tEmail")%>"></td>
</tr>
<tr>
<td><font face="<%=abFont %>" size="-1"><b>Your URL:</b></font></td>
<td><input id="author_urlS tr" name="author_ur lStr" type="text"
size="24"
Value="<%=Reque st.Cookies("pos tURL")%>"></td>
</tr>
<tr>
<td><font face="<%=abFont %>" size="-1"><b>Subjec t:</b></font></td>
<td><input id="headerStr" name="headerStr " type="text" size="48"
value="<%=strHe aderString%>"></td>
</tr>
<tr>
<td><font face="<%=abFont %>"
size="-1"><b><%=strMsg Label%>:</b></font></td>
<td><textarea cols="48" rows="5" name="detailStr "
id="detailStr"> </textarea></td>
</tr>
<%If Request.QuerySt ring("Id") 0 Then%>
<%If abIncOrigMsg = True Then%>
<tr><td colspan="2">&nb sp;</td></tr>
<tr valign="top">
<td>&nbsp;</td>
<td><input type="checkbox" name="incOrig" Value="yes" CHECKED>
<font face="<%=abFont %>" size="-1"><b>Includ e original message in
response?<br></td>
</tr>
<%End If%>
<tr><td colspan="2">&nb sp;</td></tr>
<tr>
<td>&nbsp;</td>
<td><font face="<%=abFont %>" size="-1">Posted by
<%=adoRs.Fields ("author_nameSt r").Value%>&nbs p;on&nbsp;<%=Fo rmatDateTime(ad o
Rs.Fields("msgT ime").Value,
1)%>&nbsp;at&nb sp;<%=FormatDat eTime(adoRs.Fie lds("msgTime"). Value,
3)%></font></td>
</tr>
<tr>
<td valign="top"><f ont face="<%=abFont %>" size="-1"><b>Origin al
Message:</b></font></td><td><textare a cols="48"
rows="<%=GetRow s(adoRs.Fields( "detailStr").Va lue)%>" id="origMsg1"
name="origMsg1" disabled><%=Rep laceQuotes(adoR s.Fields("detai lStr").Value,
0)%></textarea></td>
</tr>
<input type="hidden" id="origMsgStr " name="origMsgSt r"
value="<%=adoRs .Fields("detail Str").Value%>" >
<%End If%>
<input type="hidden" id="msgId" name="msgId"
value="<%=Reque st.QueryString( "Id")%>">
<tr>
<td colspan="2" align="center">
<input type="submit" value="Post Message" Name="Submit">
</td>
</tr>
</form>
</table>
<br>
</center>
</BODY>
</HTML>

<SCRIPT ID=clientEventH andlersJS LANGUAGE=javasc ript>
<!--

function Submit_onclick( ) {
//check for client side (form) validation

if (Form_Validate( ) == true) {
return true;
} else {
return false;
}

}

//-->
</SCRIPT>

<SCRIPT Language="JavaS cript">

function Form_Validate() {

if (document.postF orm.author_name Str.value==""){
alert("[Your Name] cannot be blank");
return false;
}

if (document.postF orm.author_emai lStr.value=="") {
alert("[Your Email] cannot be blank");
return false;
}

if (document.postF orm.detailStr.v alue==""){
alert("[Your Response] cannot be blank");
return false;
}

return true;
}
</SCRIPT>

Sep 17 '06 #4
PW

"Steven Burn" <so*******@in-time.invalidwro te in message
news:up******** ******@TK2MSFTN GP03.phx.gbl...
Typically, the aspboard.com website no longer exists apparently.

Going on the code you've posted, the function we need to modify
(AddResponse) appears to be located elsewhere (probably the
"aspBoardFuncti ons.asp" include file).
> lngNewId = AddResponse(Req uest("msgId"), Request("header Str"),
strDetailStrin g, Request("author _nameStr"), Request("author _emailStr") &
"",
>Request("autho r_urlStr") & "")

The filter will simply involve blocking the use of;

<a
[url
://

The latter of the three (will block all posts with http://, ftp:// etc)
can
be avoided if posting URL's is something you want to keep, by modifying
the
code to display the URL as text, rather than a hyperlink (about the only
way
to keep URL's and not help the spammer at the same time as filtering by
domain, IP etc, is pointless)

If you can send me* a zipped copy of the aspboard files (original's if
possible), or post the AddResponse function, I'll do the modifications for
you and post them here.

If sending them, please send them to;

files /at/ it-mate /dot/ co /dot/ uk

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Hi Steven,

Files sent as requested.

Thanks,
Paul


Sep 17 '06 #5
Sorry for taking so long to respond (have been away for a couple days).

Open up aspBoardFunctio ns.asp and go to line #134, then add the following;

'// Begin code block
'// Message
If Instr(1, sMessage, "<a", vbTextCompare) OR _
Instr(1, sMessage, "[url", vbTextCompare) OR _
Instr(1, sMessage, "<sc", vbTextCompare) Then _
Response.Write "Error: Potential spam detected<br><br >" & _
"Please click the back button on your " & _
"browser and check your message again": Response.End
'// End code block

This will add a filter to the "sMessage" string, to prevent <a, [url and
<script entries.

You should probably add it for the other fields aswell (just replace
sMessage with their respective variable names).

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

"PW" <pw***@SPAMbigp ond.net.auwrote in message
news:eg******** ******@TK2MSFTN GP05.phx.gbl...
>
"Steven Burn" <so*******@in-time.invalidwro te in message
news:up******** ******@TK2MSFTN GP03.phx.gbl...
Typically, the aspboard.com website no longer exists apparently.

Going on the code you've posted, the function we need to modify
(AddResponse) appears to be located elsewhere (probably the
"aspBoardFuncti ons.asp" include file).
lngNewId = AddResponse(Req uest("msgId"), Request("header Str"),
strDetailString , Request("author _nameStr"), Request("author _emailStr")
&
"",
Request("author _urlStr") & "")
The filter will simply involve blocking the use of;

<a
[url
://

The latter of the three (will block all posts with http://, ftp:// etc)
can
be avoided if posting URL's is something you want to keep, by modifying
the
code to display the URL as text, rather than a hyperlink (about the only
way
to keep URL's and not help the spammer at the same time as filtering by
domain, IP etc, is pointless)

If you can send me* a zipped copy of the aspboard files (original's if
possible), or post the AddResponse function, I'll do the modifications
for
you and post them here.

If sending them, please send them to;

files /at/ it-mate /dot/ co /dot/ uk

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!


Hi Steven,

Files sent as requested.

Thanks,
Paul


Sep 19 '06 #6
PW

Hi Steven,

I've implemented the code, now will just sit back and wait to see what the
result is.

Thanks for your help, it is much appreciated.

PW


"Steven Burn" <so*******@in-time.invalidwro te in message
news:%2******** **********@TK2M SFTNGP04.phx.gb l...
Sorry for taking so long to respond (have been away for a couple days).

Open up aspBoardFunctio ns.asp and go to line #134, then add the following;

'// Begin code block
'// Message
If Instr(1, sMessage, "<a", vbTextCompare) OR _
Instr(1, sMessage, "[url", vbTextCompare) OR _
Instr(1, sMessage, "<sc", vbTextCompare) Then _
Response.Write "Error: Potential spam detected<br><br >" & _
"Please click the back button on your " & _
"browser and check your message again": Response.End
'// End code block

This will add a filter to the "sMessage" string, to prevent <a, [url and
<script entries.

You should probably add it for the other fields aswell (just replace
sMessage with their respective variable names).

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Sep 20 '06 #7
No problem ;o)

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

"PW" <pw***@SPAMbigp ond.net.auwrote in message
news:eY******** ******@TK2MSFTN GP02.phx.gbl...
>
Hi Steven,

I've implemented the code, now will just sit back and wait to see what the
result is.

Thanks for your help, it is much appreciated.

PW


"Steven Burn" <so*******@in-time.invalidwro te in message
news:%2******** **********@TK2M SFTNGP04.phx.gb l...
Sorry for taking so long to respond (have been away for a couple days).

Open up aspBoardFunctio ns.asp and go to line #134, then add the
following;

'// Begin code block
'// Message
If Instr(1, sMessage, "<a", vbTextCompare) OR _
Instr(1, sMessage, "[url", vbTextCompare) OR _
Instr(1, sMessage, "<sc", vbTextCompare) Then _
Response.Write "Error: Potential spam detected<br><br >" & _
"Please click the back button on your " & _
"browser and check your message again": Response.End
'// End code block

This will add a filter to the "sMessage" string, to prevent <a, [url and
<script entries.

You should probably add it for the other fields aswell (just replace
sMessage with their respective variable names).

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!


Sep 21 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
6075
by: delisonews | last post by:
I'm looking for a simple, filesystem-based message board. (No MySQL!) Something that I could include easily in my code: include '../inc/messageboard.php'; .... so that the board shows up at the bottom of every PHP page. The board should have just the basic features, like: - posting capability
0
1761
by: Mad Scientist Jr | last post by:
I'm not getting any answers on YAF's own board, so thought I'd ask here... how do you get YAF to work with >1 board? I clicked Admin and on the left, Boards, and we have created 3 boards * board 1 * board 2 * board 3
2
12328
by: Champika Nirosh | last post by:
Hi, I want to create drawing board application that can draw Line, rectagle, circle and free hand drawing. Each drawing need to be transparent, moveable (draggable), have bring to front and send to back feature etc. How can I do this .. where should I start?
4
1259
by: Alan Silver | last post by:
Hello, Seems everyone's site nowadays has those "Ads by Goooooogle" boxes on them. I would like to do something similar, so I can provide an affiliate scheme. I don't want to supply HTML for other site owners to include in their pages as it's certain they'll either get it wrong, or change it. Google have code like...
0
2495
by: SA15Computers | last post by:
Hi am looking for a shoutbox or a tagboard for my website to use on a lot of web pages for business comments, is there any out there without hidden adverts. Thanks it would be a great help for this information as this the last part of the site I need to design. Regards
10
12554
by: sam_cit | last post by:
Hi Everyone, I'm working on developing a chess game and i decided to use c++ for its object oriented approach. I have a bass class unit and is inherited to distinct number of units (like king, queen, pawns etc...), i will have pure virtual functions in the base class for move(), attack() etc which are applicable to all units and would override them in the child classes. Function specific to pawn like recovering of another unit once it...
4
20689
by: Hypnotik | last post by:
So I'm writing this program. I have the board constructed, and I'm having a problem making a move. At this point I just want to make a move, I'll work on whether it is a legal move after that. The code is posted below. I have a class for board, and the pieces are part of the board class. I also have a class for human move and computer move, however I'm not using those (yet). I don't know whether I need to use a seperate class for the move,...
8
1530
mikeak2001
by: mikeak2001 | last post by:
Hi everyone! Just wondering if anyone can help me here, I have my own website that i am currently working on, I have a fully qualified TLD and my site is hosted with HyperPHP. Everything has been going well until now! so here is my question! Someone has added advertisements to my website, if I view the source code, I can see the additional java code, but when i log into my hosts control panel and edit my coding the advertisment code is...
1
2047
by: poopsy | last post by:
hi all, i'm trying out some examples on java..and i found this code where there is board and i cant find out what package to import to make this work, im getting error where there is "board".. i have tried out the following but none worked: import java.awt.*; import javax.swing.*; import java.util.*; import java.applet.Applet; plz help
0
8468
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8386
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8814
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8660
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6213
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5683
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4209
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4390
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2799
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.