473,324 Members | 2,456 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,324 software developers and data experts.

Giving Focus on PostBack

I have a page where I give focus to the first textbox on my page:

<body onLoad="document.forms[0].firstName.focus();">

I also go and check the status of some data when I exit the 3rd textbox on
my screen.

The problem is that the screen jumps back to the first textbox because of
the onLoad statement when the page is posted back. Is there an easy way to
tell it to do the Onload only once and to go the next textbox on the repost?

Thanks,

Tom
Nov 19 '05 #1
10 1676
I think this is what you want....

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

If Not IsPostBack Then

<body onLoad="document.forms[0].firstName.focus();">

End If

End Sub

"tshad" <ts**********@ftsolutions.com> wrote in message
news:ec**************@TK2MSFTNGP12.phx.gbl...
I have a page where I give focus to the first textbox on my page:

<body onLoad="document.forms[0].firstName.focus();">

I also go and check the status of some data when I exit the 3rd textbox on
my screen.

The problem is that the screen jumps back to the first textbox because of
the onLoad statement when the page is posted back. Is there an easy way to tell it to do the Onload only once and to go the next textbox on the repost?
Thanks,

Tom

Nov 19 '05 #2
"Andy G" <aj*****@iastate.edu> wrote in message
news:On**************@TK2MSFTNGP12.phx.gbl...
I think this is what you want....

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

If Not IsPostBack Then

<body onLoad="document.forms[0].firstName.focus();">

End If

End Sub

I tried that but got the error:

Compiler Error Message: BC30636: '>' expected.

My code is:

Sub Page_Load(sender as Object, e as EventArgs)
if not IsPostBack then
<body onLoad="document.forms[0].firstName.focus();">
end if
end sub

Tom

"tshad" <ts**********@ftsolutions.com> wrote in message
news:ec**************@TK2MSFTNGP12.phx.gbl...
I have a page where I give focus to the first textbox on my page:

<body onLoad="document.forms[0].firstName.focus();">

I also go and check the status of some data when I exit the 3rd textbox
on
my screen.

The problem is that the screen jumps back to the first textbox because of
the onLoad statement when the page is posted back. Is there an easy way

to
tell it to do the Onload only once and to go the next textbox on the

repost?

Thanks,

Tom


Nov 19 '05 #3
Hi.
Add a Runat="server" and id="myBody" to the body tag in the aspx file. Then
put this in your code behind:
Protected WithEvents myBody As System.Web.UI.HtmlControls.HtmlGenericControl

Now you can add the javascript in you page load method, like this:
If Not IsPostBack Then
myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")
End If

Shawn

"tshad" <ts**********@ftsolutions.com> wrote in message
news:uc**************@TK2MSFTNGP14.phx.gbl...
"Andy G" <aj*****@iastate.edu> wrote in message
news:On**************@TK2MSFTNGP12.phx.gbl...
I think this is what you want....

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

If Not IsPostBack Then

<body onLoad="document.forms[0].firstName.focus();">

End If

End Sub


I tried that but got the error:

Compiler Error Message: BC30636: '>' expected.

My code is:

Sub Page_Load(sender as Object, e as EventArgs)
if not IsPostBack then
<body onLoad="document.forms[0].firstName.focus();">
end if
end sub

Tom


"tshad" <ts**********@ftsolutions.com> wrote in message
news:ec**************@TK2MSFTNGP12.phx.gbl...
I have a page where I give focus to the first textbox on my page:

<body onLoad="document.forms[0].firstName.focus();">

I also go and check the status of some data when I exit the 3rd textbox
on
my screen.

The problem is that the screen jumps back to the first textbox because of the onLoad statement when the page is posted back. Is there an easy
way to
tell it to do the Onload only once and to go the next textbox on the

repost?

Thanks,

Tom



Nov 19 '05 #4

"tshad" <ts**********@ftsolutions.com> wrote in message
news:e4**************@TK2MSFTNGP09.phx.gbl...
"Shawn" <bo********@hotmail.com> wrote in message
news:el**************@TK2MSFTNGP12.phx.gbl...
Hi.
Add a Runat="server" and id="myBody" to the body tag in the aspx file.
Then
put this in your code behind:
Protected WithEvents myBody As
System.Web.UI.HtmlControls.HtmlGenericControl

Now you can add the javascript in you page load method, like this:
If Not IsPostBack Then
myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")
End If


I tried that and got the following error (even though there is a </body>
at the bottom of the page):
************************************************** ******
Parser Error Message: Unexpected end of file looking for </body> tag.

Source Error:

Line 433:</head>
Line 434:<link href="staffing.css" rel="stylesheet" type="text/css">
Line 435:<body id="myBody" runat="server">
Line 436:<fts:header id=ctl1 runat="Server" />
************************************************** *****
Do I need to do something else (need to body tags - I wouldn't think so).


I found out what was causing this error, although it makes user controls a
bit of a problem

At the bottom of my page I have:

<fts:footer id=ctl2 runat="Server" />

This has the following code in it:

</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

If I take out the control and just put this code it by hand, I don't get the
error.

Also, This doesn't seem to work. Even though I am adding the the "onload"
to the body attribute, it is still there when the page is re-posted, so it
always goes back to the first textbox.

Tom
Nov 19 '05 #5
"Shawn" <bo********@hotmail.com> wrote in message
news:el**************@TK2MSFTNGP12.phx.gbl...
Hi.
Add a Runat="server" and id="myBody" to the body tag in the aspx file.
Then
put this in your code behind:
Protected WithEvents myBody As
System.Web.UI.HtmlControls.HtmlGenericControl

Now you can add the javascript in you page load method, like this:
If Not IsPostBack Then
myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")
End If
I tried that and got the following error (even though there is a </body> at
the bottom of the page):
************************************************** ******
Parser Error Message: Unexpected end of file looking for </body> tag.

Source Error:

Line 433:</head>
Line 434:<link href="staffing.css" rel="stylesheet" type="text/css">
Line 435:<body id="myBody" runat="server">
Line 436:<fts:header id=ctl1 runat="Server" />
************************************************** *****
Do I need to do something else (need to body tags - I wouldn't think so).

Tom
Shawn

"tshad" <ts**********@ftsolutions.com> wrote in message
news:uc**************@TK2MSFTNGP14.phx.gbl...
"Andy G" <aj*****@iastate.edu> wrote in message
news:On**************@TK2MSFTNGP12.phx.gbl...
>I think this is what you want....
>
> Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles MyBase.Load
>
> If Not IsPostBack Then
>
> <body onLoad="document.forms[0].firstName.focus();">
>
> End If
>
> End Sub
>


I tried that but got the error:

Compiler Error Message: BC30636: '>' expected.

My code is:

Sub Page_Load(sender as Object, e as EventArgs)
if not IsPostBack then
<body onLoad="document.forms[0].firstName.focus();">
end if
end sub

Tom
>
>
> "tshad" <ts**********@ftsolutions.com> wrote in message
> news:ec**************@TK2MSFTNGP12.phx.gbl...
>> I have a page where I give focus to the first textbox on my page:
>>
>> <body onLoad="document.forms[0].firstName.focus();">
>>
>> I also go and check the status of some data when I exit the 3rd
>> textbox
>> on
>> my screen.
>>
>> The problem is that the screen jumps back to the first textbox because of >> the onLoad statement when the page is posted back. Is there an easy way > to
>> tell it to do the Onload only once and to go the next textbox on the
> repost?
>>
>> Thanks,
>>
>> Tom
>>
>>
>
>



Nov 19 '05 #6
I was just thinking:

If you do:

myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")

to add the attribute during Page_Load, is there a corresponding:

myBody.Attributes.remove (or something like that take it out).

This then allow me to take if off during the repost, which is what is
causing my problem.

Thanks,

Tom

"tshad" <ts**********@ftsolutions.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...

"tshad" <ts**********@ftsolutions.com> wrote in message
news:e4**************@TK2MSFTNGP09.phx.gbl...
"Shawn" <bo********@hotmail.com> wrote in message
news:el**************@TK2MSFTNGP12.phx.gbl...
Hi.
Add a Runat="server" and id="myBody" to the body tag in the aspx file.
Then
put this in your code behind:
Protected WithEvents myBody As
System.Web.UI.HtmlControls.HtmlGenericControl

Now you can add the javascript in you page load method, like this:
If Not IsPostBack Then
myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")
End If


I tried that and got the following error (even though there is a </body>
at the bottom of the page):
************************************************** ******
Parser Error Message: Unexpected end of file looking for </body> tag.

Source Error:

Line 433:</head>
Line 434:<link href="staffing.css" rel="stylesheet" type="text/css">
Line 435:<body id="myBody" runat="server">
Line 436:<fts:header id=ctl1 runat="Server" />
************************************************** *****
Do I need to do something else (need to body tags - I wouldn't think so).


I found out what was causing this error, although it makes user controls a
bit of a problem

At the bottom of my page I have:

<fts:footer id=ctl2 runat="Server" />

This has the following code in it:

</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

If I take out the control and just put this code it by hand, I don't get
the error.

Also, This doesn't seem to work. Even though I am adding the the
"onload" to the body attribute, it is still there when the page is
re-posted, so it always goes back to the first textbox.

Tom

Nov 19 '05 #7
Well, you can just clear it, like this: myBody.Attributes.Item("onLoad") =
""
Shawn

"tshad" <ts**********@ftsolutions.com> wrote in message
news:ed**************@TK2MSFTNGP12.phx.gbl...
I was just thinking:

If you do:

myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")

to add the attribute during Page_Load, is there a corresponding:

myBody.Attributes.remove (or something like that take it out).

This then allow me to take if off during the repost, which is what is
causing my problem.

Thanks,

Tom

"tshad" <ts**********@ftsolutions.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...

"tshad" <ts**********@ftsolutions.com> wrote in message
news:e4**************@TK2MSFTNGP09.phx.gbl...
"Shawn" <bo********@hotmail.com> wrote in message
news:el**************@TK2MSFTNGP12.phx.gbl...
Hi.
Add a Runat="server" and id="myBody" to the body tag in the aspx file.
Then
put this in your code behind:
Protected WithEvents myBody As
System.Web.UI.HtmlControls.HtmlGenericControl

Now you can add the javascript in you page load method, like this:
If Not IsPostBack Then
myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")
End If

I tried that and got the following error (even though there is a </body> at the bottom of the page):
************************************************** ******
Parser Error Message: Unexpected end of file looking for </body> tag.

Source Error:

Line 433:</head>
Line 434:<link href="staffing.css" rel="stylesheet" type="text/css">
Line 435:<body id="myBody" runat="server">
Line 436:<fts:header id=ctl1 runat="Server" />
************************************************** *****
Do I need to do something else (need to body tags - I wouldn't think so).


I found out what was causing this error, although it makes user controls a bit of a problem

At the bottom of my page I have:

<fts:footer id=ctl2 runat="Server" />

This has the following code in it:

</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

If I take out the control and just put this code it by hand, I don't get
the error.

Also, This doesn't seem to work. Even though I am adding the the
"onload" to the body attribute, it is still there when the page is
re-posted, so it always goes back to the first textbox.

Tom


Nov 19 '05 #8
"Shawn" <bo********@hotmail.com> wrote in message
news:up**************@TK2MSFTNGP14.phx.gbl...
Well, you can just clear it, like this: myBody.Attributes.Item("onLoad") =
""
That was what I was looking for, but it didn't do what I wanted.

When I post back, it goes to the first link at the top of the page.

What I am doing is this:

I have 10 textboxes. When I enter the page the first time, I give focus to
the first text box. After the 3 textbox, I go check to see if what was
entered was valid and if valid, I fill the rest of the text boxes. I then
want it to go to the next text box. It goes to the first textbox when it
comes back (the old way) and to the top of the page (the second way when I
set onload to "").

It makes sense as to why it does this. But is there a way to know where it
was on exit (which would be the third box) and then go to the 4th text box
on reentry?

Thanks,

Tom Shawn

"tshad" <ts**********@ftsolutions.com> wrote in message
news:ed**************@TK2MSFTNGP12.phx.gbl...
I was just thinking:

If you do:

myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")

to add the attribute during Page_Load, is there a corresponding:

myBody.Attributes.remove (or something like that take it out).

This then allow me to take if off during the repost, which is what is
causing my problem.

Thanks,

Tom

"tshad" <ts**********@ftsolutions.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
>
> "tshad" <ts**********@ftsolutions.com> wrote in message
> news:e4**************@TK2MSFTNGP09.phx.gbl...
>> "Shawn" <bo********@hotmail.com> wrote in message
>> news:el**************@TK2MSFTNGP12.phx.gbl...
>>> Hi.
>>> Add a Runat="server" and id="myBody" to the body tag in the aspx
>>> file.
>>> Then
>>> put this in your code behind:
>>> Protected WithEvents myBody As
>>> System.Web.UI.HtmlControls.HtmlGenericControl
>>>
>>> Now you can add the javascript in you page load method, like this:
>>> If Not IsPostBack Then
>>> myBody.Attributes.Add("onLoad",
>>> "document.forms[0].the_id_of_the_first_textbox.focus();")
>>> End If
>>
>> I tried that and got the following error (even though there is a </body> >> at the bottom of the page):
>> ************************************************** ******
>> Parser Error Message: Unexpected end of file looking for </body> tag.
>>
>> Source Error:
>>
>> Line 433:</head>
>> Line 434:<link href="staffing.css" rel="stylesheet" type="text/css">
>> Line 435:<body id="myBody" runat="server">
>> Line 436:<fts:header id=ctl1 runat="Server" />
>> ************************************************** *****
>> Do I need to do something else (need to body tags - I wouldn't think so). >>
>
> I found out what was causing this error, although it makes user
> controls a > bit of a problem
>
> At the bottom of my page I have:
>
> <fts:footer id=ctl2 runat="Server" />
>
> This has the following code in it:
>
> </td>
> </tr>
> </table>
> </td>
> </tr>
> </table>
> </body>
> </html>
>
> If I take out the control and just put this code it by hand, I don't
> get
> the error.
>
> Also, This doesn't seem to work. Even though I am adding the the
> "onload" to the body attribute, it is still there when the page is
> re-posted, so it always goes back to the first textbox.
>
> Tom
>



Nov 19 '05 #9
"tshad" <ts**********@ftsolutions.com> wrote in message
news:Oh**************@TK2MSFTNGP10.phx.gbl...
"Shawn" <bo********@hotmail.com> wrote in message
news:up**************@TK2MSFTNGP14.phx.gbl...
Well, you can just clear it, like this: myBody.Attributes.Item("onLoad")
=
""
That was what I was looking for, but it didn't do what I wanted.

When I post back, it goes to the first link at the top of the page.

What I am doing is this:

I have 10 textboxes. When I enter the page the first time, I give focus
to the first text box. After the 3 textbox, I go check to see if what was
entered was valid and if valid, I fill the rest of the text boxes. I then
want it to go to the next text box. It goes to the first textbox when it
comes back (the old way) and to the top of the page (the second way when I
set onload to "").

It makes sense as to why it does this. But is there a way to know where
it was on exit (which would be the third box) and then go to the 4th text
box on reentry?


I figured it out.

I just needed to add:

myBody.Attributes.Item("onLoad") =
"document.forms[0].ticklerPhrase.focus()"

to my IsPostBack section.

Thanks,

Tom
Thanks,

Tom
Shawn

"tshad" <ts**********@ftsolutions.com> wrote in message
news:ed**************@TK2MSFTNGP12.phx.gbl...
I was just thinking:

If you do:

myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")

to add the attribute during Page_Load, is there a corresponding:

myBody.Attributes.remove (or something like that take it out).

This then allow me to take if off during the repost, which is what is
causing my problem.

Thanks,

Tom

"tshad" <ts**********@ftsolutions.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
>
> "tshad" <ts**********@ftsolutions.com> wrote in message
> news:e4**************@TK2MSFTNGP09.phx.gbl...
>> "Shawn" <bo********@hotmail.com> wrote in message
>> news:el**************@TK2MSFTNGP12.phx.gbl...
>>> Hi.
>>> Add a Runat="server" and id="myBody" to the body tag in the aspx
>>> file.
>>> Then
>>> put this in your code behind:
>>> Protected WithEvents myBody As
>>> System.Web.UI.HtmlControls.HtmlGenericControl
>>>
>>> Now you can add the javascript in you page load method, like this:
>>> If Not IsPostBack Then
>>> myBody.Attributes.Add("onLoad",
>>> "document.forms[0].the_id_of_the_first_textbox.focus();")
>>> End If
>>
>> I tried that and got the following error (even though there is a

</body>
>> at the bottom of the page):
>> ************************************************** ******
>> Parser Error Message: Unexpected end of file looking for </body> tag.
>>
>> Source Error:
>>
>> Line 433:</head>
>> Line 434:<link href="staffing.css" rel="stylesheet" type="text/css">
>> Line 435:<body id="myBody" runat="server">
>> Line 436:<fts:header id=ctl1 runat="Server" />
>> ************************************************** *****
>> Do I need to do something else (need to body tags - I wouldn't think

so).
>>
>
> I found out what was causing this error, although it makes user
> controls

a
> bit of a problem
>
> At the bottom of my page I have:
>
> <fts:footer id=ctl2 runat="Server" />
>
> This has the following code in it:
>
> </td>
> </tr>
> </table>
> </td>
> </tr>
> </table>
> </body>
> </html>
>
> If I take out the control and just put this code it by hand, I don't
> get
> the error.
>
> Also, This doesn't seem to work. Even though I am adding the the
> "onload" to the body attribute, it is still there when the page is
> re-posted, so it always goes back to the first textbox.
>
> Tom
>



Nov 19 '05 #10
Scott Guthrie demonstrates a great reusable way to get this functionality.

Look at the ASP.NET BlackBelt WebForms talk in the TechEd 2003
Presentations section.
http://www.scottgu.com/

Joshua Flanagan
http://flimflan.com/blog

tshad wrote:
"tshad" <ts**********@ftsolutions.com> wrote in message
news:Oh**************@TK2MSFTNGP10.phx.gbl...
"Shawn" <bo********@hotmail.com> wrote in message
news:up**************@TK2MSFTNGP14.phx.gbl...
Well, you can just clear it, like this: myBody.Attributes.Item("onLoad")
=
""


That was what I was looking for, but it didn't do what I wanted.

When I post back, it goes to the first link at the top of the page.

What I am doing is this:

I have 10 textboxes. When I enter the page the first time, I give focus way
entered was valid and if valid, I fill the rest of the text boxes. I then
want it to go to the next text box. It goes to the first textbox when it
comes back (the old way) and to the top of the page (the second way when I
set onload to "").

It makes sense as to why it does this. But is there a way to know where
it was on exit (which would be the third box) and then go to the 4th text
box on reentry?

I figured it out.

I just needed to add:

myBody.Attributes.Item("onLoad") =
"document.forms[0].ticklerPhrase.focus()"

to my IsPostBack section.

Thanks,

Tom
Thanks,

Tom
Shawn

"tshad" <ts**********@ftsolutions.com> wrote in message
news:ed**************@TK2MSFTNGP12.phx.gbl...

I was just thinking:

If you do:

myBody.Attributes.Add("onLoad",
"document.forms[0].the_id_of_the_first_textbox.focus();")

to add the attribute during Page_Load, is there a corresponding:

myBody.Attributes.remove (or something like that take it out).

This then allow me to take if off during the repost, which is what is
causing my problem.

Thanks,

Tom

"tshad" <ts**********@ftsolutions.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl.. .

>"tshad" <ts**********@ftsolutions.com> wrote in message
>news:e4**************@TK2MSFTNGP09.phx.gbl. ..
>
>>"Shawn" <bo********@hotmail.com> wrote in message
>>news:el**************@TK2MSFTNGP12.phx.gbl.. .
>>
>>>Hi.
>>>Add a Runat="server" and id="myBody" to the body tag in the aspx
>>>file.
>>>Then
>>>put this in your code behind:
>>>Protected WithEvents myBody As
>>>System.Web.UI.HtmlControls.HtmlGenericContr ol
>>>
>>>Now you can add the javascript in you page load method, like this:
>>>If Not IsPostBack Then
>>> myBody.Attributes.Add("onLoad",
>>>"document.forms[0].the_id_of_the_first_textbox.focus();")
>>>End If
>>
>>I tried that and got the following error (even though there is a

</body>

>>at the bottom of the page):
>>******************************************** ************
>>Parser Error Message: Unexpected end of file looking for </body> tag.
>>
>>Source Error:
>>
>>Line 433:</head>
>>Line 434:<link href="staffing.css" rel="stylesheet" type="text/css">
>>Line 435:<body id="myBody" runat="server">
>>Line 436:<fts:header id=ctl1 runat="Server" />
>>******************************************** ***********
>>Do I need to do something else (need to body tags - I wouldn't think

so).

>I found out what was causing this error, although it makes user
>controls

a

>bit of a problem
>
>At the bottom of my page I have:
>
><fts:footer id=ctl2 runat="Server" />
>
>This has the following code in it:
>
> </td>
> </tr>
> </table>
> </td>
></tr>
></table>
></body>
></html>
>
>If I take out the control and just put this code it by hand, I don't
>get
>the error.
>
>Also, This doesn't seem to work. Even though I am adding the the
>"onload" to the body attribute, it is still there when the page is
>re-posted, so it always goes back to the first textbox.
>
>Tom
>


Nov 19 '05 #11

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

Similar topics

2
by: Marco Liedekerken | last post by:
Hi, Is it possible to retrieve the control that had the focus when the page was posted back? Because the focus is lost when a postback occurs I want to manually set the focus to the control...
2
by: Elliot M. Rodriguez | last post by:
Is it possible to change a control's focus at runtime? I'm sure you can.... I have a form with 2 textbox controls that cause postbacks. They are located in the middle of my form. When a...
6
by: Mike | last post by:
I have a few textbox controls that have autopostback so that when they loose focus they update a label control that shows the count of characters in their respective text control. This works fine,...
3
by: Dexter | last post by:
Hello All, I have a web control that when receive the focus, a postback is called, using getPostBackEventReference. But, when the PostBack is called, i want that the focus goes to the web control....
1
by: psual | last post by:
Hi I have a page (1st page) with a button. this button opens a new page (2nd page) in full-screen mode. The problem is that the 2nd page is always loaded before the postback of the 1st page,...
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...
2
by: Rey | last post by:
Howdy all. Using visual web developer (VB) on xp pro box. My problem with with a web form that on accessing the calendar control causes a postback that moves the cursor back to the txtFirstName...
24
by: erickme | last post by:
Well I wasn't to sure if post this on the javascript forum or here, but since is an error that probably I got because something related to my ASP.Net code I decided to posted here. Ok my problem...
8
by: Mel | last post by:
I have several text boxes and drop-down lists in an AJAX Update Panel. All user inputs have the Postback property set to True. After I type something in the first input entry and press the "Tab"...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
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...

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.