473,402 Members | 2,046 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

Javascript in Customvalidator wont run on production web server

Hi there

I'm having a little bit of a problem with my customvalidator control.
The problem is the javascript runs fine on my local webserver IIS but
not when I post it to the web hosting server. As it is client side
scripting I'm suprised that this is the case as I'm using the same
browser IE6 and the same machine to access both. I've included the
code below.
Can anyone help . I've tried lowering all the security settings for
intranet and local intranet but to no avail!

Cheers
Ronan

<%@ Page Language="C#" Debug="true" Trace="true"
Src="..\CodeBehind\LogIn.cs" Inherits="EST.LogIn" %>
<script runat="server">

void Submit_Click(Object sender, EventArgs e)
{

GetLogIn();
}
void Send_Click(Object sender, EventArgs e)
{
SendEmail();

}

</script>
<html>
<head>
<link href="..\StyleSheets\BSF.css" type="text/css"
rel="stylesheet" />
<script language="javascript" id="clientEventHandlersJS">
function cvEmailPassword_Validate(source, arguments)
{
alert(source.id);

if (document.all("txtEmail").value != ""
&& document.all("txtPassword").value != "")
{
arguments.IsValid = true;
}
else
{
arguments.IsValid = false;
}
}
function cvSendPassword_Validate(source, arguments)
{
alert(source.id);
if (document.all("txtSendEmail").value != ""
)
{
arguments.IsValid = true;
}
else
{
arguments.IsValid = false;
}
}
</script>
</head>
<body>
<form runat="server">
<table>
<tbody>
<tr>
<td>
Already registered? Log In here
</td>
</tr>
<tr>
<td>
<asp:Panel id="Panel1" runat="server"
width="450px" Height="95px" BorderStyle="Solid"
BackColor="LightSkyBlue">
<div align="left">
<asp:Table id="Table1" runat="server"
Height="74px">
<asp:TableRow>
<asp:TableCell Width= "70px">
<asp:Label runat="server"
id="lblEmail">Email</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
runat="server" Height="22px" ID="txtEmail"></asp:TextBox>
</asp:TableCell>
<asp:TableCell>

<asp:RegularExpressionValidator ID="valEmailAddress"
ControlToValidate="txtEmail" ValidationExpression=".*@.*\..*"
ErrorMessage="Email address is invalid." Display="None"
EnableClientScript="true" Runat="server" />
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Label runat="server"
id="lblPassword">Password</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
TextMode="Password" runat="server" Height="22px"
ID="txtPassword"></asp:TextBox>
</asp:TableCell>

<asp:TableCell></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Button runat="server"
id = "btnLogIN" Text="LogIn" OnClick= "Submit_Click" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</asp:Panel>
<asp:customvalidator id="cvEmailPassword"
runat="server" ErrorMessage="You need to enter an email address and
password." ClientValidationFunction="cvEmailPassword_Validate "
ControlToValidate="txtEmail"></asp:customvalidator>
</td>
</tr>
<tr>
<td>
<br />
</td>
</tr>
<tr>
<td>
Forgotton your password? Enter you email
address and click send.
</td>
</tr>
<tr>
<td>
<asp:Panel id="Panel2" runat="server"
width="450px" Height="95px" BorderStyle="Solid"
BackColor="LightSkyBlue">
<div align="left">
<asp:Table id="Table2" runat="server"
Height="74px">
<asp:TableRow>
<asp:TableCell Width= "70px">
<asp:Label runat="server"
id="lblSendEmail">Email</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
runat="server" Height="22px" ID="txtSendEmail"></asp:TextBox>
</asp:TableCell>

<asp:TableCell></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Button runat="server"
id = "btnSend" Text="Send" OnClick= "Send_Click" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</asp:Panel>
<asp:customvalidator id="cvSendPassword"
runat="server" ErrorMessage="You need to enter a valid email address."
ClientValidationFunction="cvSendPassword_Validate"
ControlToValidate="txtSendEmail"
</asp:customvalidator>

</td>
</tr>
</tbody>
</table>
<br />
<asp:Label id="lblErrMessage" runat="server"></asp:Label>
<!-- Insert content here -->
</form>
</body>
</html>
Nov 18 '05 #1
3 1739
Have you verified that the validation folder is on the webserver as well.
Validation works by examining and using the files in this specific folder.
The path to this folder is found in the machine config file. Without the
folder, the run-time fails silently and validation doesn't work.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Ronan Dodworth" <rd*******@hotmail.com> wrote in message
news:1f**************************@posting.google.c om...
Hi there

I'm having a little bit of a problem with my customvalidator control.
The problem is the javascript runs fine on my local webserver IIS but
not when I post it to the web hosting server. As it is client side
scripting I'm suprised that this is the case as I'm using the same
browser IE6 and the same machine to access both. I've included the
code below.
Can anyone help . I've tried lowering all the security settings for
intranet and local intranet but to no avail!

Cheers
Ronan

<%@ Page Language="C#" Debug="true" Trace="true"
Src="..\CodeBehind\LogIn.cs" Inherits="EST.LogIn" %>
<script runat="server">

void Submit_Click(Object sender, EventArgs e)
{

GetLogIn();
}
void Send_Click(Object sender, EventArgs e)
{
SendEmail();

}

</script>
<html>
<head>
<link href="..\StyleSheets\BSF.css" type="text/css"
rel="stylesheet" />
<script language="javascript" id="clientEventHandlersJS">
function cvEmailPassword_Validate(source, arguments)
{
alert(source.id);

if (document.all("txtEmail").value != ""
&& document.all("txtPassword").value != "")
{
arguments.IsValid = true;
}
else
{
arguments.IsValid = false;
}
}
function cvSendPassword_Validate(source, arguments)
{
alert(source.id);
if (document.all("txtSendEmail").value != ""
)
{
arguments.IsValid = true;
}
else
{
arguments.IsValid = false;
}
}
</script>
</head>
<body>
<form runat="server">
<table>
<tbody>
<tr>
<td>
Already registered? Log In here
</td>
</tr>
<tr>
<td>
<asp:Panel id="Panel1" runat="server"
width="450px" Height="95px" BorderStyle="Solid"
BackColor="LightSkyBlue">
<div align="left">
<asp:Table id="Table1" runat="server"
Height="74px">
<asp:TableRow>
<asp:TableCell Width= "70px">
<asp:Label runat="server"
id="lblEmail">Email</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
runat="server" Height="22px" ID="txtEmail"></asp:TextBox>
</asp:TableCell>
<asp:TableCell>

<asp:RegularExpressionValidator ID="valEmailAddress"
ControlToValidate="txtEmail" ValidationExpression=".*@.*\..*"
ErrorMessage="Email address is invalid." Display="None"
EnableClientScript="true" Runat="server" />
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Label runat="server"
id="lblPassword">Password</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
TextMode="Password" runat="server" Height="22px"
ID="txtPassword"></asp:TextBox>
</asp:TableCell>

<asp:TableCell></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Button runat="server"
id = "btnLogIN" Text="LogIn" OnClick= "Submit_Click" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</asp:Panel>
<asp:customvalidator id="cvEmailPassword"
runat="server" ErrorMessage="You need to enter an email address and
password." ClientValidationFunction="cvEmailPassword_Validate "
ControlToValidate="txtEmail"></asp:customvalidator>
</td>
</tr>
<tr>
<td>
<br />
</td>
</tr>
<tr>
<td>
Forgotton your password? Enter you email
address and click send.
</td>
</tr>
<tr>
<td>
<asp:Panel id="Panel2" runat="server"
width="450px" Height="95px" BorderStyle="Solid"
BackColor="LightSkyBlue">
<div align="left">
<asp:Table id="Table2" runat="server"
Height="74px">
<asp:TableRow>
<asp:TableCell Width= "70px">
<asp:Label runat="server"
id="lblSendEmail">Email</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
runat="server" Height="22px" ID="txtSendEmail"></asp:TextBox>
</asp:TableCell>

<asp:TableCell></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Button runat="server"
id = "btnSend" Text="Send" OnClick= "Send_Click" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</asp:Panel>
<asp:customvalidator id="cvSendPassword"
runat="server" ErrorMessage="You need to enter a valid email address."
ClientValidationFunction="cvSendPassword_Validate"
ControlToValidate="txtSendEmail"
</asp:customvalidator>

</td>
</tr>
</tbody>
</table>
<br />
<asp:Label id="lblErrMessage" runat="server"></asp:Label>
<!-- Insert content here -->
</form>
</body>
</html>

Nov 18 '05 #2
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message news:<uz**************@TK2MSFTNGP10.phx.gbl>...
Have you verified that the validation folder is on the webserver as well.
Validation works by examining and using the files in this specific folder.
The path to this folder is found in the machine config file. Without the
folder, the run-time fails silently and validation doesn't work.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Ronan Dodworth" <rd*******@hotmail.com> wrote in message
news:1f**************************@posting.google.c om...
Hi there

I'm having a little bit of a problem with my customvalidator control.
The problem is the javascript runs fine on my local webserver IIS but
not when I post it to the web hosting server. As it is client side
scripting I'm suprised that this is the case as I'm using the same
browser IE6 and the same machine to access both. I've included the
code below.
Can anyone help . I've tried lowering all the security settings for
intranet and local intranet but to no avail!

Cheers
Ronan

<%@ Page Language="C#" Debug="true" Trace="true"
Src="..\CodeBehind\LogIn.cs" Inherits="EST.LogIn" %>
<script runat="server">

void Submit_Click(Object sender, EventArgs e)
{

GetLogIn();
}
void Send_Click(Object sender, EventArgs e)
{
SendEmail();

}

</script>
<html>
<head>
<link href="..\StyleSheets\BSF.css" type="text/css"
rel="stylesheet" />
<script language="javascript" id="clientEventHandlersJS">
function cvEmailPassword_Validate(source, arguments)
{
alert(source.id);

if (document.all("txtEmail").value != ""
&& document.all("txtPassword").value != "")
{
arguments.IsValid = true;
}
else
{
arguments.IsValid = false;
}
}
function cvSendPassword_Validate(source, arguments)
{
alert(source.id);
if (document.all("txtSendEmail").value != ""
)
{
arguments.IsValid = true;
}
else
{
arguments.IsValid = false;
}
}
</script>
</head>
<body>
<form runat="server">
<table>
<tbody>
<tr>
<td>
Already registered? Log In here
</td>
</tr>
<tr>
<td>
<asp:Panel id="Panel1" runat="server"
width="450px" Height="95px" BorderStyle="Solid"
BackColor="LightSkyBlue">
<div align="left">
<asp:Table id="Table1" runat="server"
Height="74px">
<asp:TableRow>
<asp:TableCell Width= "70px">
<asp:Label runat="server"
id="lblEmail">Email</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
runat="server" Height="22px" ID="txtEmail"></asp:TextBox>
</asp:TableCell>
<asp:TableCell>

<asp:RegularExpressionValidator ID="valEmailAddress"
ControlToValidate="txtEmail" ValidationExpression=".*@.*\..*"
ErrorMessage="Email address is invalid." Display="None"
EnableClientScript="true" Runat="server" />
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Label runat="server"
id="lblPassword">Password</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
TextMode="Password" runat="server" Height="22px"
ID="txtPassword"></asp:TextBox>
</asp:TableCell>

<asp:TableCell></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Button runat="server"
id = "btnLogIN" Text="LogIn" OnClick= "Submit_Click" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</asp:Panel>
<asp:customvalidator id="cvEmailPassword"
runat="server" ErrorMessage="You need to enter an email address and
password." ClientValidationFunction="cvEmailPassword_Validate "
ControlToValidate="txtEmail"></asp:customvalidator>
</td>
</tr>
<tr>
<td>
<br />
</td>
</tr>
<tr>
<td>
Forgotton your password? Enter you email
address and click send.
</td>
</tr>
<tr>
<td>
<asp:Panel id="Panel2" runat="server"
width="450px" Height="95px" BorderStyle="Solid"
BackColor="LightSkyBlue">
<div align="left">
<asp:Table id="Table2" runat="server"
Height="74px">
<asp:TableRow>
<asp:TableCell Width= "70px">
<asp:Label runat="server"
id="lblSendEmail">Email</asp:Label>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox
runat="server" Height="22px" ID="txtSendEmail"></asp:TextBox>
</asp:TableCell>

<asp:TableCell></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Button runat="server"
id = "btnSend" Text="Send" OnClick= "Send_Click" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</asp:Panel>
<asp:customvalidator id="cvSendPassword"
runat="server" ErrorMessage="You need to enter a valid email address."
ClientValidationFunction="cvSendPassword_Validate"
ControlToValidate="txtSendEmail"
</asp:customvalidator>

</td>
</tr>
</tbody>
</table>
<br />
<asp:Label id="lblErrMessage" runat="server"></asp:Label>
<!-- Insert content here -->
</form>
</body>
</html>

Alvin
Many thanks for that.
But just to be sure (I'm new to validation controls and .NET in
general )
is this the path you are talking about? . I got this from viewing the
rendered html on my local IIS
'/aspnet_client/system_web/1_1_4322/WebUIValidation.js'
Also is this the Machine config file setting you are talking about?

<webControls clientScriptsLocation="/aspnet_client/{0}/{1}/"/>

Regards

Ronan
Nov 18 '05 #3
right, there needs to be a folder at the end of this path on the server for
validation to work correctly

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Ronan Dodworth" <rd*******@hotmail.com> wrote in message
news:1f*************************@posting.google.co m...
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:<uz**************@TK2MSFTNGP10.phx.gbl>...
Have you verified that the validation folder is on the webserver as well.
Validation works by examining and using the files in this specific
folder.
The path to this folder is found in the machine config file. Without the
folder, the run-time fails silently and validation doesn't work.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Ronan Dodworth" <rd*******@hotmail.com> wrote in message
news:1f**************************@posting.google.c om...
> Hi there
>
> I'm having a little bit of a problem with my customvalidator control.
> The problem is the javascript runs fine on my local webserver IIS but
> not when I post it to the web hosting server. As it is client side
> scripting I'm suprised that this is the case as I'm using the same
> browser IE6 and the same machine to access both. I've included the
> code below.
> Can anyone help . I've tried lowering all the security settings for
> intranet and local intranet but to no avail!
>
> Cheers
>
>
> Ronan
>
>
>
> <%@ Page Language="C#" Debug="true" Trace="true"
> Src="..\CodeBehind\LogIn.cs" Inherits="EST.LogIn" %>
> <script runat="server">
>
> void Submit_Click(Object sender, EventArgs e)
> {
>
> GetLogIn();
> }
> void Send_Click(Object sender, EventArgs e)
> {
> SendEmail();
>
> }
>
> </script>
> <html>
> <head>
> <link href="..\StyleSheets\BSF.css" type="text/css"
> rel="stylesheet" />
> <script language="javascript" id="clientEventHandlersJS">
>
>
> function cvEmailPassword_Validate(source, arguments)
> {
> alert(source.id);
>
> if (document.all("txtEmail").value != ""
> && document.all("txtPassword").value != "")
> {
> arguments.IsValid = true;
> }
> else
> {
> arguments.IsValid = false;
> }
> }
> function cvSendPassword_Validate(source, arguments)
> {
> alert(source.id);
> if (document.all("txtSendEmail").value != ""
> )
> {
> arguments.IsValid = true;
> }
> else
> {
> arguments.IsValid = false;
> }
> }
> </script>
> </head>
> <body>
> <form runat="server">
> <table>
> <tbody>
> <tr>
> <td>
> Already registered? Log In here
> </td>
> </tr>
> <tr>
> <td>
> <asp:Panel id="Panel1" runat="server"
> width="450px" Height="95px" BorderStyle="Solid"
> BackColor="LightSkyBlue">
> <div align="left">
> <asp:Table id="Table1" runat="server"
> Height="74px">
> <asp:TableRow>
> <asp:TableCell Width= "70px">
> <asp:Label runat="server"
> id="lblEmail">Email</asp:Label>
> </asp:TableCell>
> <asp:TableCell>
> <asp:TextBox
> runat="server" Height="22px" ID="txtEmail"></asp:TextBox>
> </asp:TableCell>
> <asp:TableCell>
>
> <asp:RegularExpressionValidator ID="valEmailAddress"
> ControlToValidate="txtEmail" ValidationExpression=".*@.*\..*"
> ErrorMessage="Email address is invalid." Display="None"
> EnableClientScript="true" Runat="server" />
> </asp:TableCell>
> </asp:TableRow>
> <asp:TableRow>
> <asp:TableCell>
> <asp:Label runat="server"
> id="lblPassword">Password</asp:Label>
> </asp:TableCell>
> <asp:TableCell>
> <asp:TextBox
> TextMode="Password" runat="server" Height="22px"
> ID="txtPassword"></asp:TextBox>
> </asp:TableCell>
>
> <asp:TableCell></asp:TableCell>
> </asp:TableRow>
> <asp:TableRow>
> <asp:TableCell>
> <asp:Button runat="server"
> id = "btnLogIN" Text="LogIn" OnClick= "Submit_Click" />
> </asp:TableCell>
> </asp:TableRow>
> </asp:Table>
> </div>
> </asp:Panel>
> <asp:customvalidator id="cvEmailPassword"
> runat="server" ErrorMessage="You need to enter an email address and
> password." ClientValidationFunction="cvEmailPassword_Validate "
> ControlToValidate="txtEmail"></asp:customvalidator>
> </td>
> </tr>
> <tr>
> <td>
> <br />
> </td>
> </tr>
> <tr>
> <td>
> Forgotton your password? Enter you email
> address and click send.
> </td>
> </tr>
> <tr>
> <td>
> <asp:Panel id="Panel2" runat="server"
> width="450px" Height="95px" BorderStyle="Solid"
> BackColor="LightSkyBlue">
> <div align="left">
> <asp:Table id="Table2" runat="server"
> Height="74px">
> <asp:TableRow>
> <asp:TableCell Width= "70px">
> <asp:Label runat="server"
> id="lblSendEmail">Email</asp:Label>
> </asp:TableCell>
> <asp:TableCell>
> <asp:TextBox
> runat="server" Height="22px" ID="txtSendEmail"></asp:TextBox>
> </asp:TableCell>
>
> <asp:TableCell></asp:TableCell>
> </asp:TableRow>
> <asp:TableRow>
> <asp:TableCell>
> <asp:Button runat="server"
> id = "btnSend" Text="Send" OnClick= "Send_Click" />
> </asp:TableCell>
> </asp:TableRow>
> </asp:Table>
> </div>
> </asp:Panel>
> <asp:customvalidator id="cvSendPassword"
> runat="server" ErrorMessage="You need to enter a valid email address."
> ClientValidationFunction="cvSendPassword_Validate"
> ControlToValidate="txtSendEmail"
>></asp:customvalidator>
> </td>
> </tr>
> </tbody>
> </table>
> <br />
> <asp:Label id="lblErrMessage" runat="server"></asp:Label>
> <!-- Insert content here -->
> </form>
> </body>
> </html>

Alvin
Many thanks for that.
But just to be sure (I'm new to validation controls and .NET in
general )
is this the path you are talking about? . I got this from viewing the
rendered html on my local IIS
'/aspnet_client/system_web/1_1_4322/WebUIValidation.js'
Also is this the Machine config file setting you are talking about?

<webControls clientScriptsLocation="/aspnet_client/{0}/{1}/"/>

Regards

Ronan

Nov 18 '05 #4

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

Similar topics

2
by: John H. | last post by:
Hello I have some trouble in closing a window, Here is the problem: I develop a asp.net website use client side valiation <asp:CustomValidator id="CustomValidator1"...
2
by: Stephen Miller | last post by:
Can the CustomValidator be used to simply report unexpected errors, without requiring Client/Server validation? To explain, say you had a simple text box and button that did a Full-text Search of a...
4
by: TJS | last post by:
how do I get "onSubmit" to work in .net ? <Form id="Form1" name="Form1" method="post" onSubmit="return validateStandard(this, 'error');" runat="server">
0
by: ghafranabbas | last post by:
This is how you use the customvalidator control in any INamingContainer interface control (Datagrid, DataList, DataRepeater, etc). 1. In the ItemTemplate, place your customvalidator 2. Set the...
5
by: gane kol | last post by:
Hi I have a set of Yes/No radio buttons with textboxes for each. I need to write a common customvalidation function that checks, if radiobutton "yes" is selected, the value in the corresponding...
1
by: avp | last post by:
Hi, We have an ASP.NET 2.0 (C#) application that has a web form with a CheckBoxList control and a CustomValidator control. The CustomValidator control is used to validate that at least one...
1
by: cemcat | last post by:
Hello, We have an ASP.NET 2.0 (C#) web form that contains a textbox for users to enter multiple e-mail addresses separated by semicolons. We need to validate that each individual e-mail address...
0
by: Keith | last post by:
I have a web form that contains a repeater control that is designed to ask like a check book register. Clicking on a certain transaction takes the user to a different .aspx page where it can be...
0
by: Keith | last post by:
I have a web form that contains a repeater control that is designed to ask like a check book register. Clicking on a certain transaction takes the user to a different .aspx page where it can be...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
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,...
0
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...
0
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...
0
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...
0
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...

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.