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

Autopostback not working

Ron
Hello all,

I don't understand why my pageis not posting back to the server when I
change the selection on a radio list.

I have a page that both accepts new personal info. or allows editing
to existing info depending on the parameter passed from previous
pages. The radio is supposed to disable the password (and confirm
password) text boxes as well as their validation controls. However,
when you click 'No' (This should perform the above tasks) nothing
happens. However, when you click submit to enter the edited
information: it posts back, performs the OnSelectedIndexChanged
procedure of the radio list as well as the OnClick of the button.
Grrr.

Below is (hopefully) as much code needed to disect the issue while
trying to keep as brief as possible. I thank you in advance.

--Start of code--

<html>
<script runat="server">
sub page_load (source as object, e as eventargs)
FormType.text = "Enter New Employee"

if len(session("empnum")) = 6 then
FormTypeVar = "Edit"
FormType.text = "Edit Personal Information"

else
emppass.enabled = true
empconfirm.enabled = true
end if

If not ispostback and formtypevar = "Edit" then
passchange.enabled = "true"
fill_page() --fills fields with info from DB
end if
end sub

sub Submit_Click (sender as object, e as eventargs)
If page.isvalid then
If FormTypeVar = "New" Then
--perform tasks for adding new employee
Else
--perform tasks for editing info
end if
end if

sub togglepass(sender as object, e as eventargs)
dim temp as boolean = passchange.selecteditem.value
if temp then
passoff = false
emppass.enabled = true
empconfirm.enabled = true
pwvalid.enabled = true
else
passoff = true
emppass.enabled = false
empconfirm.enabled = false
pwvalid.enabled = false
end if
end sub
<body>
<form runat="server">
Password:
<asp:TextBox id="emppass" runat="server" textmode="password"
Columns="25" />
<asp:CustomValidator id="pwvalid" OnServerValidate="password_validate"
errormessage="Your passwords did not match, please try again."
runat="server">*</asp:customValidator>

<asp:TextBox id="empconfirm" runat="server" textmode="password"
Columns="25" />

Change your password?
<asp:RadioButtonList ID="passchange" Enabled="false" RepeatColumns="2"
OnSelectedIndexChanged="togglepass" AutoPostBack="true" runat="server"


<asp:ListItem Value=true Text="Yes" Selected="true"/>
<asp:ListItem Value=false Text="No"/>
</asp:RadioButtonList>

<asp:Button id="submit" onclick="submit_click" text="Submit"
runat="server"/>
</form>
--etc.
Nov 18 '05 #1
7 6383
Make sure the @AutoPostBack attribute is set on the tag in the HTML. Some
tags such as lists default to false so that the page does not refresh every
time that some event happens.

"Ron" <ju*********@hotmail.com> wrote in message
news:e6**************************@posting.google.c om...
Hello all,

I don't understand why my pageis not posting back to the server when I
change the selection on a radio list.

I have a page that both accepts new personal info. or allows editing
to existing info depending on the parameter passed from previous
pages. The radio is supposed to disable the password (and confirm
password) text boxes as well as their validation controls. However,
when you click 'No' (This should perform the above tasks) nothing
happens. However, when you click submit to enter the edited
information: it posts back, performs the OnSelectedIndexChanged
procedure of the radio list as well as the OnClick of the button.
Grrr.

Below is (hopefully) as much code needed to disect the issue while
trying to keep as brief as possible. I thank you in advance.

--Start of code--

<html>
<script runat="server">
sub page_load (source as object, e as eventargs)
FormType.text = "Enter New Employee"

if len(session("empnum")) = 6 then
FormTypeVar = "Edit"
FormType.text = "Edit Personal Information"

else
emppass.enabled = true
empconfirm.enabled = true
end if

If not ispostback and formtypevar = "Edit" then
passchange.enabled = "true"
fill_page() --fills fields with info from DB
end if
end sub

sub Submit_Click (sender as object, e as eventargs)
If page.isvalid then
If FormTypeVar = "New" Then
--perform tasks for adding new employee
Else
--perform tasks for editing info
end if
end if

sub togglepass(sender as object, e as eventargs)
dim temp as boolean = passchange.selecteditem.value
if temp then
passoff = false
emppass.enabled = true
empconfirm.enabled = true
pwvalid.enabled = true
else
passoff = true
emppass.enabled = false
empconfirm.enabled = false
pwvalid.enabled = false
end if
end sub
<body>
<form runat="server">
Password:
<asp:TextBox id="emppass" runat="server" textmode="password"
Columns="25" />
<asp:CustomValidator id="pwvalid" OnServerValidate="password_validate"
errormessage="Your passwords did not match, please try again."
runat="server">*</asp:customValidator>

<asp:TextBox id="empconfirm" runat="server" textmode="password"
Columns="25" />

Change your password?
<asp:RadioButtonList ID="passchange" Enabled="false" RepeatColumns="2"
OnSelectedIndexChanged="togglepass" AutoPostBack="true" runat="server"


<asp:ListItem Value=true Text="Yes" Selected="true"/>
<asp:ListItem Value=false Text="No"/>
</asp:RadioButtonList>

<asp:Button id="submit" onclick="submit_click" text="Submit"
runat="server"/>
</form>
--etc.

Nov 18 '05 #2
Set the radio list Autopostback property to TRUE.

"Ron" <ju*********@hotmail.com> wrote in message
news:e6**************************@posting.google.c om...
Hello all,

I don't understand why my pageis not posting back to the server when I
change the selection on a radio list.

I have a page that both accepts new personal info. or allows editing
to existing info depending on the parameter passed from previous
pages. The radio is supposed to disable the password (and confirm
password) text boxes as well as their validation controls. However,
when you click 'No' (This should perform the above tasks) nothing
happens. However, when you click submit to enter the edited
information: it posts back, performs the OnSelectedIndexChanged
procedure of the radio list as well as the OnClick of the button.
Grrr.

Below is (hopefully) as much code needed to disect the issue while
trying to keep as brief as possible. I thank you in advance.

--Start of code--

<html>
<script runat="server">
sub page_load (source as object, e as eventargs)
FormType.text = "Enter New Employee"

if len(session("empnum")) = 6 then
FormTypeVar = "Edit"
FormType.text = "Edit Personal Information"

else
emppass.enabled = true
empconfirm.enabled = true
end if

If not ispostback and formtypevar = "Edit" then
passchange.enabled = "true"
fill_page() --fills fields with info from DB
end if
end sub

sub Submit_Click (sender as object, e as eventargs)
If page.isvalid then
If FormTypeVar = "New" Then
--perform tasks for adding new employee
Else
--perform tasks for editing info
end if
end if

sub togglepass(sender as object, e as eventargs)
dim temp as boolean = passchange.selecteditem.value
if temp then
passoff = false
emppass.enabled = true
empconfirm.enabled = true
pwvalid.enabled = true
else
passoff = true
emppass.enabled = false
empconfirm.enabled = false
pwvalid.enabled = false
end if
end sub
<body>
<form runat="server">
Password:
<asp:TextBox id="emppass" runat="server" textmode="password"
Columns="25" />
<asp:CustomValidator id="pwvalid" OnServerValidate="password_validate"
errormessage="Your passwords did not match, please try again."
runat="server">*</asp:customValidator>

<asp:TextBox id="empconfirm" runat="server" textmode="password"
Columns="25" />

Change your password?
<asp:RadioButtonList ID="passchange" Enabled="false" RepeatColumns="2"
OnSelectedIndexChanged="togglepass" AutoPostBack="true" runat="server"


<asp:ListItem Value=true Text="Yes" Selected="true"/>
<asp:ListItem Value=false Text="No"/>
</asp:RadioButtonList>

<asp:Button id="submit" onclick="submit_click" text="Submit"
runat="server"/>
</form>
--etc.

Nov 18 '05 #3
Thanks for your quick replies.

Didn't I do what both of you said with the the following:

<asp:RadioButtonList ID="passchange" Enabled="false" RepeatColumns="2"
OnSelectedIndexChanged="togglepass" AutoPostBack="true" runat="server">

Are either of you telling me to do something different than the above
autopostback="true". Thanks.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #4
Do you have any script in the page? I mean, script placed there by you?

If not, just recompile the project.

"Ron" <Ro*@discussions.microsoft.com> wrote in message
news:71**********************************@microsof t.com...
Maybe this can clarify the problem. I just noticed the little yellow icon
--error on page-- when I click on one of the radio buttons. The error is:

Line:121, Char:3, Error:Object doesn't support this object or method, Code:0
When I view source on the page and goto line 121, this is the code:

<script language="javascript">
<!--
function __doPostBack(eventTarget, eventArgument) {
var theform;
if (window.navigator.appName.toLowerCase().indexOf("n etscape") > -1) {
theform = document.forms["form1"];
}
else {
theform = document.form1;
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
Line 121--------> theform.submit(); <---------- Line 121
}
// -->
</script>

Thanks again.

"Juan Romero" wrote:
Set the radio list Autopostback property to TRUE.

"Ron" <ju*********@hotmail.com> wrote in message
news:e6**************************@posting.google.c om...
Hello all,

I don't understand why my pageis not posting back to the server when I
change the selection on a radio list.

I have a page that both accepts new personal info. or allows editing
to existing info depending on the parameter passed from previous
pages. The radio is supposed to disable the password (and confirm
password) text boxes as well as their validation controls. However,
when you click 'No' (This should perform the above tasks) nothing
happens. However, when you click submit to enter the edited
information: it posts back, performs the OnSelectedIndexChanged
procedure of the radio list as well as the OnClick of the button.
Grrr.

Below is (hopefully) as much code needed to disect the issue while
trying to keep as brief as possible. I thank you in advance.

--Start of code--

<html>
<script runat="server">
sub page_load (source as object, e as eventargs)
FormType.text = "Enter New Employee"

if len(session("empnum")) = 6 then
FormTypeVar = "Edit"
FormType.text = "Edit Personal Information"

else
emppass.enabled = true
empconfirm.enabled = true
end if

If not ispostback and formtypevar = "Edit" then
passchange.enabled = "true"
fill_page() --fills fields with info from DB
end if
end sub

sub Submit_Click (sender as object, e as eventargs)
If page.isvalid then
If FormTypeVar = "New" Then
--perform tasks for adding new employee
Else
--perform tasks for editing info
end if
end if

sub togglepass(sender as object, e as eventargs)
dim temp as boolean = passchange.selecteditem.value
if temp then
passoff = false
emppass.enabled = true
empconfirm.enabled = true
pwvalid.enabled = true
else
passoff = true
emppass.enabled = false
empconfirm.enabled = false
pwvalid.enabled = false
end if
end sub
<body>
<form runat="server">
Password:
<asp:TextBox id="emppass" runat="server" textmode="password"
Columns="25" />
<asp:CustomValidator id="pwvalid" OnServerValidate="password_validate"
errormessage="Your passwords did not match, please try again."
runat="server">*</asp:customValidator>

<asp:TextBox id="empconfirm" runat="server" textmode="password"
Columns="25" />

Change your password?
<asp:RadioButtonList ID="passchange" Enabled="false" RepeatColumns="2"
OnSelectedIndexChanged="togglepass" AutoPostBack="true" runat="server" >

<asp:ListItem Value=true Text="Yes" Selected="true"/>
<asp:ListItem Value=false Text="No"/>
</asp:RadioButtonList>

<asp:Button id="submit" onclick="submit_click" text="Submit"
runat="server"/>
</form>
--etc.


Nov 18 '05 #5
And you're missing the closing </SCRIPT> tag.....

"Ron" <Ro*@discussions.microsoft.com> wrote in message
news:71**********************************@microsof t.com...
Maybe this can clarify the problem. I just noticed the little yellow icon
--error on page-- when I click on one of the radio buttons. The error is:

Line:121, Char:3, Error:Object doesn't support this object or method,
Code:0

When I view source on the page and goto line 121, this is the code:

<script language="javascript">
<!--
function __doPostBack(eventTarget, eventArgument) {
var theform;
if (window.navigator.appName.toLowerCase().indexOf("n etscape") > -1) {
theform = document.forms["form1"];
}
else {
theform = document.form1;
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
Line 121--------> theform.submit(); <---------- Line 121
}
// -->
</script>

Thanks again.

"Juan Romero" wrote:
Set the radio list Autopostback property to TRUE.

"Ron" <ju*********@hotmail.com> wrote in message
news:e6**************************@posting.google.c om...
> Hello all,
>
> I don't understand why my pageis not posting back to the server when I
> change the selection on a radio list.
>
> I have a page that both accepts new personal info. or allows editing
> to existing info depending on the parameter passed from previous
> pages. The radio is supposed to disable the password (and confirm
> password) text boxes as well as their validation controls. However,
> when you click 'No' (This should perform the above tasks) nothing
> happens. However, when you click submit to enter the edited
> information: it posts back, performs the OnSelectedIndexChanged
> procedure of the radio list as well as the OnClick of the button.
> Grrr.
>
> Below is (hopefully) as much code needed to disect the issue while
> trying to keep as brief as possible. I thank you in advance.
>
> --Start of code--
>
> <html>
> <script runat="server">
> sub page_load (source as object, e as eventargs)
> FormType.text = "Enter New Employee"
>
> if len(session("empnum")) = 6 then
> FormTypeVar = "Edit"
> FormType.text = "Edit Personal Information"
>
> else
> emppass.enabled = true
> empconfirm.enabled = true
> end if
>
> If not ispostback and formtypevar = "Edit" then
> passchange.enabled = "true"
> fill_page() --fills fields with info from DB
> end if
> end sub
>
> sub Submit_Click (sender as object, e as eventargs)
> If page.isvalid then
> If FormTypeVar = "New" Then
> --perform tasks for adding new employee
> Else
> --perform tasks for editing info
> end if
> end if
>
> sub togglepass(sender as object, e as eventargs)
> dim temp as boolean = passchange.selecteditem.value
> if temp then
> passoff = false
> emppass.enabled = true
> empconfirm.enabled = true
> pwvalid.enabled = true
> else
> passoff = true
> emppass.enabled = false
> empconfirm.enabled = false
> pwvalid.enabled = false
> end if
> end sub
> <body>
> <form runat="server">
> Password:
> <asp:TextBox id="emppass" runat="server" textmode="password"
> Columns="25" />
> <asp:CustomValidator id="pwvalid" OnServerValidate="password_validate"
> errormessage="Your passwords did not match, please try again."
> runat="server">*</asp:customValidator>
>
> <asp:TextBox id="empconfirm" runat="server" textmode="password"
> Columns="25" />
>
> Change your password?
> <asp:RadioButtonList ID="passchange" Enabled="false" RepeatColumns="2"
> OnSelectedIndexChanged="togglepass" AutoPostBack="true" runat="server"
> >
>
> <asp:ListItem Value=true Text="Yes" Selected="true"/>
> <asp:ListItem Value=false Text="No"/>
> </asp:RadioButtonList>
>
> <asp:Button id="submit" onclick="submit_click" text="Submit"
> runat="server"/>
> </form>
> --etc.


Nov 18 '05 #6
javascript is case sensitive
<asp:Button id="submit" onclick="submit_click" text="Submit"
runat="server"/>
but refers to
sub Submit_Click (sender as object, e as eventargs)

Try being consistent with the case

Harry

"Harry Simpson" <hs*******@nospamphgt.net> wrote in message
news:uH**************@TK2MSFTNGP10.phx.gbl...
And you're missing the closing </SCRIPT> tag.....

"Ron" <Ro*@discussions.microsoft.com> wrote in message
news:71**********************************@microsof t.com...
Maybe this can clarify the problem. I just noticed the little yellow
icon
--error on page-- when I click on one of the radio buttons. The error
is:

Line:121, Char:3, Error:Object doesn't support this object or method,
Code:0

When I view source on the page and goto line 121, this is the code:

<script language="javascript">
<!--
function __doPostBack(eventTarget, eventArgument) {
var theform;
if (window.navigator.appName.toLowerCase().indexOf("n etscape") > -1) {
theform = document.forms["form1"];
}
else {
theform = document.form1;
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
Line 121--------> theform.submit(); <---------- Line 121
}
// -->
</script>

Thanks again.

"Juan Romero" wrote:
Set the radio list Autopostback property to TRUE.

"Ron" <ju*********@hotmail.com> wrote in message
news:e6**************************@posting.google.c om...
> Hello all,
>
> I don't understand why my pageis not posting back to the server when I
> change the selection on a radio list.
>
> I have a page that both accepts new personal info. or allows editing
> to existing info depending on the parameter passed from previous
> pages. The radio is supposed to disable the password (and confirm
> password) text boxes as well as their validation controls. However,
> when you click 'No' (This should perform the above tasks) nothing
> happens. However, when you click submit to enter the edited
> information: it posts back, performs the OnSelectedIndexChanged
> procedure of the radio list as well as the OnClick of the button.
> Grrr.
>
> Below is (hopefully) as much code needed to disect the issue while
> trying to keep as brief as possible. I thank you in advance.
>
> --Start of code--
>
> <html>
> <script runat="server">
> sub page_load (source as object, e as eventargs)
> FormType.text = "Enter New Employee"
>
> if len(session("empnum")) = 6 then
> FormTypeVar = "Edit"
> FormType.text = "Edit Personal Information"
>
> else
> emppass.enabled = true
> empconfirm.enabled = true
> end if
>
> If not ispostback and formtypevar = "Edit" then
> passchange.enabled = "true"
> fill_page() --fills fields with info from DB
> end if
> end sub
>
> sub Submit_Click (sender as object, e as eventargs)
> If page.isvalid then
> If FormTypeVar = "New" Then
> --perform tasks for adding new employee
> Else
> --perform tasks for editing info
> end if
> end if
>
> sub togglepass(sender as object, e as eventargs)
> dim temp as boolean = passchange.selecteditem.value
> if temp then
> passoff = false
> emppass.enabled = true
> empconfirm.enabled = true
> pwvalid.enabled = true
> else
> passoff = true
> emppass.enabled = false
> empconfirm.enabled = false
> pwvalid.enabled = false
> end if
> end sub
> <body>
> <form runat="server">
> Password:
> <asp:TextBox id="emppass" runat="server" textmode="password"
> Columns="25" />
> <asp:CustomValidator id="pwvalid" OnServerValidate="password_validate"
> errormessage="Your passwords did not match, please try again."
> runat="server">*</asp:customValidator>
>
> <asp:TextBox id="empconfirm" runat="server" textmode="password"
> Columns="25" />
>
> Change your password?
> <asp:RadioButtonList ID="passchange" Enabled="false" RepeatColumns="2"
> OnSelectedIndexChanged="togglepass" AutoPostBack="true" runat="server"
> >
>
> <asp:ListItem Value=true Text="Yes" Selected="true"/>
> <asp:ListItem Value=false Text="No"/>
> </asp:RadioButtonList>
>
> <asp:Button id="submit" onclick="submit_click" text="Submit"
> runat="server"/>
> </form>
> --etc.


Nov 18 '05 #7
That means you had another control in the page with the same id, lol.

"Ron" <Ro*@discussions.microsoft.com> wrote in message
news:81**********************************@microsof t.com...
Could it really be this simple?!?

<asp:Button id="submit" onclick="submit_click" text="Submit"
runat="server"/>

In the above, I changed to 'id='btnSubmit "' and all is good!

Thank you all for your help.
"Ron" wrote:
Hello all,

I don't understand why my pageis not posting back to the server when I
change the selection on a radio list.

I have a page that both accepts new personal info. or allows editing
to existing info depending on the parameter passed from previous
pages. The radio is supposed to disable the password (and confirm
password) text boxes as well as their validation controls. However,
when you click 'No' (This should perform the above tasks) nothing
happens. However, when you click submit to enter the edited
information: it posts back, performs the OnSelectedIndexChanged
procedure of the radio list as well as the OnClick of the button.
Grrr.

Below is (hopefully) as much code needed to disect the issue while
trying to keep as brief as possible. I thank you in advance.

--Start of code--

<html>
<script runat="server">
sub page_load (source as object, e as eventargs)
FormType.text = "Enter New Employee"

if len(session("empnum")) = 6 then
FormTypeVar = "Edit"
FormType.text = "Edit Personal Information"

else
emppass.enabled = true
empconfirm.enabled = true
end if

If not ispostback and formtypevar = "Edit" then
passchange.enabled = "true"
fill_page() --fills fields with info from DB
end if
end sub

sub Submit_Click (sender as object, e as eventargs)
If page.isvalid then
If FormTypeVar = "New" Then
--perform tasks for adding new employee
Else
--perform tasks for editing info
end if
end if

sub togglepass(sender as object, e as eventargs)
dim temp as boolean = passchange.selecteditem.value
if temp then
passoff = false
emppass.enabled = true
empconfirm.enabled = true
pwvalid.enabled = true
else
passoff = true
emppass.enabled = false
empconfirm.enabled = false
pwvalid.enabled = false
end if
end sub
<body>
<form runat="server">
Password:
<asp:TextBox id="emppass" runat="server" textmode="password"
Columns="25" />
<asp:CustomValidator id="pwvalid" OnServerValidate="password_validate"
errormessage="Your passwords did not match, please try again."
runat="server">*</asp:customValidator>

<asp:TextBox id="empconfirm" runat="server" textmode="password"
Columns="25" />

Change your password?
<asp:RadioButtonList ID="passchange" Enabled="false" RepeatColumns="2"
OnSelectedIndexChanged="togglepass" AutoPostBack="true" runat="server"


<asp:ListItem Value=true Text="Yes" Selected="true"/>
<asp:ListItem Value=false Text="No"/>
</asp:RadioButtonList>

<asp:Button id="submit" onclick="submit_click" text="Submit"
runat="server"/>
</form>
--etc.

Nov 18 '05 #8

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

Similar topics

8
by: Matthew Louden | last post by:
why need to set autopostback property to be true?? I know autopostback event means to send the form to the server automatically. I tried checkbox, checkbox list, radio button, and radio button...
2
by: ben | last post by:
Hi All, I have a Listbox which gets populated from the database.On selecting an item in the list, i would like to populate some other fields......it was working fine until i added...
1
by: Neo | last post by:
I put a textbox on the page.The textbox only accepts integer value. I also added a comparevalidator control to check the data entered in that textbox and a validationsummary control on the page....
3
by: EC | last post by:
I have a web control button with which runs a client side script before it the autopostback using the onclick event. It is working fine when the user clicks it. What I would like to do is...
5
by: sri | last post by:
I have a usercontrol that has the dropdownlist which has Autopostback set to true. The selectedindex changed event is not getting fired from IE if the production webserver has ASP.NET 1.1.4322.573...
3
by: indigator | last post by:
I am using ASP.NET 2.0. I have 2 dropdownlists in my page. One holds the list of all the countries and other holds the list of all States. When the user selects the country as United States, I want...
2
by: rn5a | last post by:
Assume that a user control has a TextBox (Page1.ascx) <asp:TextBox ID="txtName" runat="server"/> I am encapsulating the above user control in a ASPX page named Page1.aspx i.e. the ASPX page...
1
by: danyeungw | last post by:
I get the following from the link http://support.microsoft.com/kb/314206. I need to have both work - the page stays where it is and set focus to next control. Does anyone have solution? I have...
6
by: Peter | last post by:
ASP.NET 2.0 Visual Studio 2008 I have the following code and when the textbox displays and I press Enter while in the text box I get AutoPostBack, how do I stop AutoPostBack? TextBox txt =...
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...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
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)...
0
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...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
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...

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.