473,382 Members | 1,204 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,382 software developers and data experts.

setting focus to an asp.net web user control

Hi,

I'm having problems setting focus to a textbox on a web user contol on an
asp.net web page. The following script works on normal asp.net pages:

<script language="javascript">
function cmdButton1_Clicked()
{ document.all('txtInput1').focus();
return false;
}
</script>

But it fails when using web user controls. Anyone know how to set focus to
an object in this senario?
Nov 19 '05 #1
12 4859
When you usercontrols, the controls inside the userControls will have an id
like userContrlID:childControlID

So, lets say your user control has an id like "uc1"
and the textbox inside it has an id like "txtInput1"

Then your textbox's id after it is rendered to the web page becomes
"uc1:txtInput1"

So you should use

document.all('uc1:txtInput1').focus();

Let me know if its not clear. Good Luck
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:12**********************************@microsof t.com...
Hi,

I'm having problems setting focus to a textbox on a web user contol on an
asp.net web page. The following script works on normal asp.net pages:

<script language="javascript">
function cmdButton1_Clicked()
{ document.all('txtInput1').focus();
return false;
}
</script>

But it fails when using web user controls. Anyone know how to set focus to an object in this senario?

Nov 19 '05 #2
That doesn't seem to work either:

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb"
Inherits="FocusTester.WebForm1"%>
<%@ Register TagPrefix="uc1" TagName="WebUserControl1"
Src="WebUserControl1.ascx" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<script language="javascript">
var control = document.getElementById("uc1:TextBox2");
alert(control)
if( control != null ){control.focus();}
</script>

<body>
<form id="Form1" method="post" runat="server">
<asp:TextBox id="txtInput1" runat="server"></asp:TextBox>
<br>
<uc1:WebUserControl1 id="WebUserControl11"
runat="server"></uc1:WebUserControl1>
</form>
</body>
</HTML>
"CLEAR-RCIC" wrote:
Hi,

I'm having problems setting focus to a textbox on a web user contol on an
asp.net web page. The following script works on normal asp.net pages:

<script language="javascript">
function cmdButton1_Clicked()
{ document.all('txtInput1').focus();
return false;
}
</script>

But it fails when using web user controls. Anyone know how to set focus to
an object in this senario?

Nov 19 '05 #3
Huh!!, your user control id is "WebUserControl11" not uc1, so it should be
var control = document.getElementById("WebUserControl11:TextBox2 ");
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:B5**********************************@microsof t.com...
That doesn't seem to work either:

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="FocusTester.WebForm1"%>
<%@ Register TagPrefix="uc1" TagName="WebUserControl1"
Src="WebUserControl1.ascx" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<script language="javascript">
var control = document.getElementById("uc1:TextBox2");
alert(control)
if( control != null ){control.focus();}
</script>

<body>
<form id="Form1" method="post" runat="server">
<asp:TextBox id="txtInput1" runat="server"></asp:TextBox>
<br>
<uc1:WebUserControl1 id="WebUserControl11"
runat="server"></uc1:WebUserControl1>
</form>
</body>
</HTML>
"CLEAR-RCIC" wrote:
Hi,

I'm having problems setting focus to a textbox on a web user contol on an asp.net web page. The following script works on normal asp.net pages:

<script language="javascript">
function cmdButton1_Clicked()
{ document.all('txtInput1').focus();
return false;
}
</script>

But it fails when using web user controls. Anyone know how to set focus to an object in this senario?

Nov 19 '05 #4
I had tried that to. That doesn't work work either.

"CLEAR-RCIC" wrote:
Hi,

I'm having problems setting focus to a textbox on a web user contol on an
asp.net web page. The following script works on normal asp.net pages:

<script language="javascript">
function cmdButton1_Clicked()
{ document.all('txtInput1').focus();
return false;
}
</script>

But it fails when using web user controls. Anyone know how to set focus to
an object in this senario?

Nov 19 '05 #5

Well, how about posting the html rendered by the way, that way we can find
out what the textbox2 is rendering as
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:EB**********************************@microsof t.com...
I had tried that to. That doesn't work work either.

"CLEAR-RCIC" wrote:
Hi,

I'm having problems setting focus to a textbox on a web user contol on an asp.net web page. The following script works on normal asp.net pages:

<script language="javascript">
function cmdButton1_Clicked()
{ document.all('txtInput1').focus();
return false;
}
</script>

But it fails when using web user controls. Anyone know how to set focus to an object in this senario?

Nov 19 '05 #6
Good thinking. Here it is:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0042)http://localhost/FocusTester/WebForm1.aspx -->
<HTML><HEAD><TITLE>WebForm1</TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<META content="Visual Basic .NET 7.1" name=CODE_LANGUAGE>
<META content=JavaScript name=vs_defaultClientScript>
<META content=http://schemas.microsoft.com/intellisense/ie5
name=vs_targetSchema>
<SCRIPT language=javascript>
var control = document.getElementById("WebUserControl11:TextBox2 ");
alert(control)
if( control != null ){control.focus();}
</SCRIPT>
</HEAD>
<BODY>
<FORM id=Form1 name=Form1 action=WebForm1.aspx method=post><INPUT type=hidden
value=dDwxNzE0Mjk4ODM7Oz5LkR2Ym7FGguoxTWTE3/K4xV30DA== name=__VIEWSTATE>
<INPUT
id=txtInput1 name=txtInput1> <BR><INPUT id=WebUserControl11_TextBox2
name=WebUserControl11:TextBox2> </FORM></BODY></HTML>
"Kumar Reddi" wrote:

Well, how about posting the html rendered by the way, that way we can find
out what the textbox2 is rendering as
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:EB**********************************@microsof t.com...
I had tried that to. That doesn't work work either.

"CLEAR-RCIC" wrote:
Hi,

I'm having problems setting focus to a textbox on a web user contol on an asp.net web page. The following script works on normal asp.net pages:

<script language="javascript">
function cmdButton1_Clicked()
{ document.all('txtInput1').focus();
return false;
}
</script>

But it fails when using web user controls. Anyone know how to set focus to an object in this senario?


Nov 19 '05 #7
Hmm as you can see it rendered as "WebUserControl11_TextBox2 " instead of
the colon ":". So use the WebUserControl11_TextBox2 to reference it

--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:23**********************************@microsof t.com...
Good thinking. Here it is:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0042)http://localhost/FocusTester/WebForm1.aspx -->
<HTML><HEAD><TITLE>WebForm1</TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<META content="Visual Basic .NET 7.1" name=CODE_LANGUAGE>
<META content=JavaScript name=vs_defaultClientScript>
<META content=http://schemas.microsoft.com/intellisense/ie5
name=vs_targetSchema>
<SCRIPT language=javascript>
var control = document.getElementById("WebUserControl11:TextBox2 ");
alert(control)
if( control != null ){control.focus();}
</SCRIPT>
</HEAD>
<BODY>
<FORM id=Form1 name=Form1 action=WebForm1.aspx method=post><INPUT type=hidden value=dDwxNzE0Mjk4ODM7Oz5LkR2Ym7FGguoxTWTE3/K4xV30DA== name=__VIEWSTATE>
<INPUT
id=txtInput1 name=txtInput1> <BR><INPUT id=WebUserControl11_TextBox2
name=WebUserControl11:TextBox2> </FORM></BODY></HTML>
"Kumar Reddi" wrote:

Well, how about posting the html rendered by the way, that way we can find out what the textbox2 is rendering as
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:EB**********************************@microsof t.com...
I had tried that to. That doesn't work work either.

"CLEAR-RCIC" wrote:

> Hi,
>
> I'm having problems setting focus to a textbox on a web user contol on
an
> asp.net web page. The following script works on normal asp.net
pages: >
> <script language="javascript">
> function cmdButton1_Clicked()
> { document.all('txtInput1').focus();
> return false;
> }
> </script>
>
> But it fails when using web user controls. Anyone know how to set

focus to
> an object in this senario?


Nov 19 '05 #8


"Kumar Reddi" wrote:
Hmm as you can see it rendered as "WebUserControl11_TextBox2 " instead of
the colon ":". So use the WebUserControl11_TextBox2 to reference it

--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:23**********************************@microsof t.com...
Good thinking. Here it is:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0042)http://localhost/FocusTester/WebForm1.aspx -->
<HTML><HEAD><TITLE>WebForm1</TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<META content="Visual Basic .NET 7.1" name=CODE_LANGUAGE>
<META content=JavaScript name=vs_defaultClientScript>
<META content=http://schemas.microsoft.com/intellisense/ie5
name=vs_targetSchema>
<SCRIPT language=javascript>
var control = document.getElementById("WebUserControl11:TextBox2 ");
alert(control)
if( control != null ){control.focus();}
</SCRIPT>
</HEAD>
<BODY>
<FORM id=Form1 name=Form1 action=WebForm1.aspx method=post><INPUT

type=hidden
value=dDwxNzE0Mjk4ODM7Oz5LkR2Ym7FGguoxTWTE3/K4xV30DA== name=__VIEWSTATE>
<INPUT
id=txtInput1 name=txtInput1> <BR><INPUT id=WebUserControl11_TextBox2
name=WebUserControl11:TextBox2> </FORM></BODY></HTML>
"Kumar Reddi" wrote:

Well, how about posting the html rendered by the way, that way we can find out what the textbox2 is rendering as
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:EB**********************************@microsof t.com...
> I had tried that to. That doesn't work work either.
>
> "CLEAR-RCIC" wrote:
>
> > Hi,
> >
> > I'm having problems setting focus to a textbox on a web user contol on an
> > asp.net web page. The following script works on normal asp.net pages: > >
> > <script language="javascript">
> > function cmdButton1_Clicked()
> > { document.all('txtInput1').focus();
> > return false;
> > }
> > </script>
> >
> > But it fails when using web user controls. Anyone know how to set focus to
> > an object in this senario?


Nov 19 '05 #9
Yep. Tried that too. It doesn't work either. I'm putting this code on the
main WebForm1.aspx page. That's correct isn't it?

"Kumar Reddi" wrote:
Hmm as you can see it rendered as "WebUserControl11_TextBox2 " instead of
the colon ":". So use the WebUserControl11_TextBox2 to reference it

--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:23**********************************@microsof t.com...
Good thinking. Here it is:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0042)http://localhost/FocusTester/WebForm1.aspx -->
<HTML><HEAD><TITLE>WebForm1</TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<META content="Visual Basic .NET 7.1" name=CODE_LANGUAGE>
<META content=JavaScript name=vs_defaultClientScript>
<META content=http://schemas.microsoft.com/intellisense/ie5
name=vs_targetSchema>
<SCRIPT language=javascript>
var control = document.getElementById("WebUserControl11:TextBox2 ");
alert(control)
if( control != null ){control.focus();}
</SCRIPT>
</HEAD>
<BODY>
<FORM id=Form1 name=Form1 action=WebForm1.aspx method=post><INPUT

type=hidden
value=dDwxNzE0Mjk4ODM7Oz5LkR2Ym7FGguoxTWTE3/K4xV30DA== name=__VIEWSTATE>
<INPUT
id=txtInput1 name=txtInput1> <BR><INPUT id=WebUserControl11_TextBox2
name=WebUserControl11:TextBox2> </FORM></BODY></HTML>
"Kumar Reddi" wrote:

Well, how about posting the html rendered by the way, that way we can find out what the textbox2 is rendering as
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:EB**********************************@microsof t.com...
> I had tried that to. That doesn't work work either.
>
> "CLEAR-RCIC" wrote:
>
> > Hi,
> >
> > I'm having problems setting focus to a textbox on a web user contol on an
> > asp.net web page. The following script works on normal asp.net pages: > >
> > <script language="javascript">
> > function cmdButton1_Clicked()
> > { document.all('txtInput1').focus();
> > return false;
> > }
> > </script>
> >
> > But it fails when using web user controls. Anyone know how to set focus to
> > an object in this senario?


Nov 19 '05 #10

Hmm there the problem is. I thought you had the code executing in response
to an event. Ok, as you can see the code is in the HEAD section. This code
executes before, the controls are even written to the page. So, your
javascript code is not able to find the control you are referring to, since
its not loaded yet. So,you should put this code after the closing FORM tag
and inside the closing BODY tag. At this position, the controls on the page
are loaded, but the form is not shown to the user yet. So, that should do
your work
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:6A**********************************@microsof t.com...
Yep. Tried that too. It doesn't work either. I'm putting this code on the main WebForm1.aspx page. That's correct isn't it?

"Kumar Reddi" wrote:
Hmm as you can see it rendered as "WebUserControl11_TextBox2 " instead of the colon ":". So use the WebUserControl11_TextBox2 to reference it

--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:23**********************************@microsof t.com...
Good thinking. Here it is:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0042)http://localhost/FocusTester/WebForm1.aspx --> <HTML><HEAD><TITLE>WebForm1</TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<META content="Visual Basic .NET 7.1" name=CODE_LANGUAGE>
<META content=JavaScript name=vs_defaultClientScript>
<META content=http://schemas.microsoft.com/intellisense/ie5
name=vs_targetSchema>
<SCRIPT language=javascript>
var control = document.getElementById("WebUserControl11:TextBox2 ");
alert(control)
if( control != null ){control.focus();}
</SCRIPT>
</HEAD>
<BODY>
<FORM id=Form1 name=Form1 action=WebForm1.aspx method=post><INPUT

type=hidden
value=dDwxNzE0Mjk4ODM7Oz5LkR2Ym7FGguoxTWTE3/K4xV30DA== name=__VIEWSTATE> <INPUT
id=txtInput1 name=txtInput1> <BR><INPUT id=WebUserControl11_TextBox2
name=WebUserControl11:TextBox2> </FORM></BODY></HTML>
"Kumar Reddi" wrote:

>
> Well, how about posting the html rendered by the way, that way we
can find
> out what the textbox2 is rendering as
> --
> Kumar Reddi
> http://kumarreddi.blogspot.com
>
> "CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
> news:EB**********************************@microsof t.com...
> > I had tried that to. That doesn't work work either.
> >
> > "CLEAR-RCIC" wrote:
> >
> > > Hi,
> > >
> > > I'm having problems setting focus to a textbox on a web user
contol on
> an
> > > asp.net web page. The following script works on normal asp.net

pages:
> > >
> > > <script language="javascript">
> > > function cmdButton1_Clicked()
> > > { document.all('txtInput1').focus();
> > > return false;
> > > }
> > > </script>
> > >
> > > But it fails when using web user controls. Anyone know how to
set focus
> to
> > > an object in this senario?
>
>
>


Nov 19 '05 #11
Yup. That did it. I know that the code has to go after the contol is
rendered but had lost track after trying too many different things. Thanks
for all your help.

"Kumar Reddi" wrote:

Hmm there the problem is. I thought you had the code executing in response
to an event. Ok, as you can see the code is in the HEAD section. This code
executes before, the controls are even written to the page. So, your
javascript code is not able to find the control you are referring to, since
its not loaded yet. So,you should put this code after the closing FORM tag
and inside the closing BODY tag. At this position, the controls on the page
are loaded, but the form is not shown to the user yet. So, that should do
your work
--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:6A**********************************@microsof t.com...
Yep. Tried that too. It doesn't work either. I'm putting this code on

the
main WebForm1.aspx page. That's correct isn't it?

"Kumar Reddi" wrote:
Hmm as you can see it rendered as "WebUserControl11_TextBox2 " instead of the colon ":". So use the WebUserControl11_TextBox2 to reference it

--
Kumar Reddi
http://kumarreddi.blogspot.com

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:23**********************************@microsof t.com...
> Good thinking. Here it is:
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <!-- saved from url=(0042)http://localhost/FocusTester/WebForm1.aspx --> > <HTML><HEAD><TITLE>WebForm1</TITLE>
> <META http-equiv=Content-Type content="text/html; charset=utf-8">
> <META content="MSHTML 6.00.2800.1400" name=GENERATOR>
> <META content="Visual Basic .NET 7.1" name=CODE_LANGUAGE>
> <META content=JavaScript name=vs_defaultClientScript>
> <META content=http://schemas.microsoft.com/intellisense/ie5
> name=vs_targetSchema>
> <SCRIPT language=javascript>
> var control = document.getElementById("WebUserControl11:TextBox2 ");
> alert(control)
> if( control != null ){control.focus();}
> </SCRIPT>
> </HEAD>
> <BODY>
> <FORM id=Form1 name=Form1 action=WebForm1.aspx method=post><INPUT
type=hidden
> value=dDwxNzE0Mjk4ODM7Oz5LkR2Ym7FGguoxTWTE3/K4xV30DA== name=__VIEWSTATE> > <INPUT
> id=txtInput1 name=txtInput1> <BR><INPUT id=WebUserControl11_TextBox2
> name=WebUserControl11:TextBox2> </FORM></BODY></HTML>
>
>
> "Kumar Reddi" wrote:
>
> >
> > Well, how about posting the html rendered by the way, that way we can find
> > out what the textbox2 is rendering as
> > --
> > Kumar Reddi
> > http://kumarreddi.blogspot.com
> >
> > "CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
> > news:EB**********************************@microsof t.com...
> > > I had tried that to. That doesn't work work either.
> > >
> > > "CLEAR-RCIC" wrote:
> > >
> > > > Hi,
> > > >
> > > > I'm having problems setting focus to a textbox on a web user contol on
> > an
> > > > asp.net web page. The following script works on normal asp.net
pages:
> > > >
> > > > <script language="javascript">
> > > > function cmdButton1_Clicked()
> > > > { document.all('txtInput1').focus();
> > > > return false;
> > > > }
> > > > </script>
> > > >
> > > > But it fails when using web user controls. Anyone know how to set focus
> > to
> > > > an object in this senario?
> >
> >
> >


Nov 19 '05 #12
Did it work now?
Patrick
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 19 '05 #13

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

Similar topics

0
by: ED M. | last post by:
Hello all...I'm new to the board. I have a problem that I hope someone here might be able to solve for me. I am doing some clientside validation using Javascript. The text I am testing is...
1
by: Jason | last post by:
I have created a c-sharp app that has keyup, keydown events tied to the form. The form also has some other controls, buttons, labels and 1 custom control that I made which inherits from user...
0
by: MattB | last post by:
I have a page with several user controls on it. Some of the UC's have multiple text boxes that get auto-populated via the OnTextChanged event. When this happens, I lose my focus (where the...
2
by: Sridhar | last post by:
Hi, I have a question. I have created a user control which contains a textbox and a button. we will enter some search word in the textbox and hit the button. Then we will get a pop-up with the...
1
by: Praveena.Alapati | last post by:
Hi, There is a tab control on a page with multiple tabs and handful of controls in each tab. The way it's rendered in html (like grid etc..) is in table format in tablerows and cells. On...
5
by: Finn Stampe Mikkelsen | last post by:
Hi How can i set a focus to a textbox in my codebehind page?? I have this WebForm, that takes information from a user and 2 buttons on the form. One that takes action on the entered...
3
by: kelvin.koogan | last post by:
I have a number of controls on a tab page. I want to validate them all when the user tries to leave the tab. I then want to highlight the first control which fails validation. How can I do this? I...
2
by: angi35 | last post by:
I hope this is an easy question for someone out there. In Access 2000…I have a MainForm with a tab control (MAIN TABS) with 7 tabs. Within each tab is a SubForm. Within each SubForm is a tab...
3
by: zacks | last post by:
I am working on an application that has a UI that supports multiuple functions by means of a group of "plug ins". Each plugin is a class library. Each plugin contains a User Control that defines...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.