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

Sending data with post back.

Am I correct to assume that any changes to a control's properties or changes
to a ViewState("Name") are not available until after the Page_Load fires?

If so, how can you set a flag in a control event so that you can take action
on postback?

I have the following code..... The window.alert always reads 0
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

'Put user code to initialize the page here

If not ispostback then

textbox1.text = 0

end if

Response.Write("<script language=javascript>window.alert('textbox1 = " &
TextBox1.Text & "')</script>")

End Sub
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBindContacts.Click

TextBox1.Text = 1

ViewState("CallType") = 1

End Sub
Jul 19 '05 #1
7 1675
the question in your case is not really when the values are available.
the real question is in what order do things happen?

page load event fires BEFORE your button_click event therefore when you
do a response.write, textbox still has the original value. that is why
on the FIRST run the alert shows a value of zero. additonally, once you
click ok on the alert, the text box still has a zero so when you click
the button, the alert will again show zero. That's because the
response.write occurs BEFORE the button_click is processed.

However, this time the text box shows 1. So once you click the button
the second time, the alert shows what you expect. I ran the exact code
you posted and that is the output I got.

Basically you need to change the order of your code. Also, if you had
used the debugger that comes with visual studio, you would have noticed
the error.
Jim Mitchell wrote:
Am I correct to assume that any changes to a control's properties or changes
to a ViewState("Name") are not available until after the Page_Load fires?

If so, how can you set a flag in a control event so that you can take action
on postback?

I have the following code..... The window.alert always reads 0
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

'Put user code to initialize the page here

If not ispostback then

textbox1.text = 0

end if

Response.Write("<script language=javascript>window.alert('textbox1 = " &
TextBox1.Text & "')</script>")

End Sub
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBindContacts.Click

TextBox1.Text = 1

ViewState("CallType") = 1

End Sub


Jul 19 '05 #2
to answer your other question, viewstate is restored during page_init
which happens before page_load.

also, i think the real problem you are having is where to put your code.
do not take action on postback in the page_lod event (in this case).
instead, take action in the bottun's click event since you are
responding to the click event.

i'd encourage you to do some reading on event handlers. a good start
would be the following link (in internet explorer) provided you have the
visual studio.net documentation installed:

ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vbconWebFormsPageProcessingStages.htm

Jim Mitchell wrote:
Am I correct to assume that any changes to a control's properties or changes
to a ViewState("Name") are not available until after the Page_Load fires?

If so, how can you set a flag in a control event so that you can take action
on postback?

I have the following code..... The window.alert always reads 0
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

'Put user code to initialize the page here

If not ispostback then

textbox1.text = 0

end if

Response.Write("<script language=javascript>window.alert('textbox1 = " &
TextBox1.Text & "')</script>")

End Sub
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBindContacts.Click

TextBox1.Text = 1

ViewState("CallType") = 1

End Sub


Jul 19 '05 #3
Thank you for the very detailed answer. I guess I was trying to force
something to happen in the page_load event chasing a challenge I have posted
in the Datagrid forum. Nevertheless, your answer reconfirmed the way I
thought it should be happening. I will take your suggestion on the event
reading. If you think you might be able to help, I am taking action in the
button_click event as shown below, but when I load a column in a datagrid at
run time with no columns at design time (and no autogenerate columns), my
datagrid dissappears on postback.

Everyone was saying to "make sure you bind the datagrid on postback" and
since binding in the button_click was not working, I kept trying to put it
in the load page event. The code below works perfectly if I have even one
column defined at design time, but as soon as I take all columns out at
design time, everything falls apart.

Thanks again for your help. Maybe you can catch something below that we are
missing.

Jim


Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
BindGrid("Company")
End If
End Sub

Private Sub btnFillOne_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFillOne.Click

BindGrid("Company")

End Sub
Private Sub btnFillTwo_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFillTwo.Click

BindGrid("Contact")

End Sub

Sub BindGrid(ByVal field_name)

Dim mycn As SqlClient.SqlConnection

Dim daAccounts As SqlClient.SqlDataAdapter

Dim dsAccounts As New DataSet

Dim mysql As String

mycn = New
SqlClient.SqlConnection(System.Configuration.Confi gurationSettings.AppSettin
gs("ConnectString"))

DataGrid1.Columns.Clear()

Dim dcolumn As System.Web.UI.WebControls.ButtonColumn

dcolumn = New System.Web.UI.WebControls.ButtonColumn

dcolumn.ButtonType = ButtonColumnType.LinkButton

dcolumn.DataTextField = field_name

dcolumn.HeaderText = field_name

dcolumn.CommandName = "Select"

dcolumn.Text = "Select"

If field_name = "Company" Then mysql = "Select * from tblCompanys"

If field_name = "Contact" Then mysql = "Select * from tblContacts"

daAccounts = New SqlClient.SqlDataAdapter(mysql, mycn)

daAccounts.Fill(dsAccounts)

DataGrid1.DataSource = dsAccounts

DataGrid1.DataKeyField = "ID"

DataGrid1.Columns.Add(dcolumn)

DataGrid1.DataBind()

mycn.Close()

End Sub


"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:YS***********************@news3.calgary.shaw. ca...
to answer your other question, viewstate is restored during page_init
which happens before page_load.

also, i think the real problem you are having is where to put your code.
do not take action on postback in the page_lod event (in this case).
instead, take action in the bottun's click event since you are
responding to the click event.

i'd encourage you to do some reading on event handlers. a good start
would be the following link (in internet explorer) provided you have the
visual studio.net documentation installed:

ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vbconWebFormsPageProcessingStages.htm
Jim Mitchell wrote:
Am I correct to assume that any changes to a control's properties or changes to a ViewState("Name") are not available until after the Page_Load fires?
If so, how can you set a flag in a control event so that you can take action on postback?

I have the following code..... The window.alert always reads 0
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

'Put user code to initialize the page here

If not ispostback then

textbox1.text = 0

end if

Response.Write("<script language=javascript>window.alert('textbox1 = " &
TextBox1.Text & "')</script>")

End Sub
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBindContacts.Click

TextBox1.Text = 1

ViewState("CallType") = 1

End Sub

Jul 19 '05 #4
JD
> to answer your other question, viewstate is restored during page_init
which happens before page_load.

I don't think this is correct. I think its in the method loadviewstate that
viewstate gets restored. This happens before page load but after page init
and it only happens on postbacks.

- J

"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:YS***********************@news3.calgary.shaw. ca... to answer your other question, viewstate is restored during page_init
which happens before page_load.

also, i think the real problem you are having is where to put your code.
do not take action on postback in the page_lod event (in this case).
instead, take action in the bottun's click event since you are
responding to the click event.

i'd encourage you to do some reading on event handlers. a good start
would be the following link (in internet explorer) provided you have the
visual studio.net documentation installed:

ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vbconWebFormsPageProcessingStages.htm
Jim Mitchell wrote:
Am I correct to assume that any changes to a control's properties or changes to a ViewState("Name") are not available until after the Page_Load fires?
If so, how can you set a flag in a control event so that you can take action on postback?

I have the following code..... The window.alert always reads 0
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

'Put user code to initialize the page here

If not ispostback then

textbox1.text = 0

end if

Response.Write("<script language=javascript>window.alert('textbox1 = " &
TextBox1.Text & "')</script>")

End Sub
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBindContacts.Click

TextBox1.Text = 1

ViewState("CallType") = 1

End Sub

Jul 19 '05 #5
i just did this with no columns defined at run time and it works.
however i have autogenerate turned on. i don't see anywhere in your code
that you generate the columns, so if you turn off autogenerate, how do
you expect columns to show up?

Jim Mitchell wrote:
Thank you for the very detailed answer. I guess I was trying to force
something to happen in the page_load event chasing a challenge I have posted
in the Datagrid forum. Nevertheless, your answer reconfirmed the way I
thought it should be happening. I will take your suggestion on the event
reading. If you think you might be able to help, I am taking action in the
button_click event as shown below, but when I load a column in a datagrid at
run time with no columns at design time (and no autogenerate columns), my
datagrid dissappears on postback.

Everyone was saying to "make sure you bind the datagrid on postback" and
since binding in the button_click was not working, I kept trying to put it
in the load page event. The code below works perfectly if I have even one
column defined at design time, but as soon as I take all columns out at
design time, everything falls apart.

Thanks again for your help. Maybe you can catch something below that we are
missing.

Jim


Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
BindGrid("Company")
End If
End Sub

Private Sub btnFillOne_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFillOne.Click

BindGrid("Company")

End Sub
Private Sub btnFillTwo_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFillTwo.Click

BindGrid("Contact")

End Sub

Sub BindGrid(ByVal field_name)

Dim mycn As SqlClient.SqlConnection

Dim daAccounts As SqlClient.SqlDataAdapter

Dim dsAccounts As New DataSet

Dim mysql As String

mycn = New
SqlClient.SqlConnection(System.Configuration.Confi gurationSettings.AppSettin
gs("ConnectString"))

DataGrid1.Columns.Clear()

Dim dcolumn As System.Web.UI.WebControls.ButtonColumn

dcolumn = New System.Web.UI.WebControls.ButtonColumn

dcolumn.ButtonType = ButtonColumnType.LinkButton

dcolumn.DataTextField = field_name

dcolumn.HeaderText = field_name

dcolumn.CommandName = "Select"

dcolumn.Text = "Select"

If field_name = "Company" Then mysql = "Select * from tblCompanys"

If field_name = "Contact" Then mysql = "Select * from tblContacts"

daAccounts = New SqlClient.SqlDataAdapter(mysql, mycn)

daAccounts.Fill(dsAccounts)

DataGrid1.DataSource = dsAccounts

DataGrid1.DataKeyField = "ID"

DataGrid1.Columns.Add(dcolumn)

DataGrid1.DataBind()

mycn.Close()

End Sub


"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:YS***********************@news3.calgary.shaw. ca...
to answer your other question, viewstate is restored during page_init
which happens before page_load.

also, i think the real problem you are having is where to put your code.
do not take action on postback in the page_lod event (in this case).
instead, take action in the bottun's click event since you are
responding to the click event.

i'd encourage you to do some reading on event handlers. a good start
would be the following link (in internet explorer) provided you have the
visual studio.net documentation installed:


ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vbconWebFormsPageProcessingStages.htm
Jim Mitchell wrote:

Am I correct to assume that any changes to a control's properties or
changes
to a ViewState("Name") are not available until after the Page_Load
fires?
If so, how can you set a flag in a control event so that you can take
action
on postback?

I have the following code..... The window.alert always reads 0
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

'Put user code to initialize the page here

If not ispostback then

textbox1.text = 0

end if

Response.Write("<script language=javascript>window.alert('textbox1 = " &
TextBox1.Text & "')</script>")

End Sub
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBindContacts.Click

TextBox1.Text = 1

ViewState("CallType") = 1

End Sub



Jul 19 '05 #6
The bindgrid routine adds the columns at run time from the btn click event.

Jim
"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:9R*******************@news1.calgary.shaw.ca.. .
i just did this with no columns defined at run time and it works.
however i have autogenerate turned on. i don't see anywhere in your code
that you generate the columns, so if you turn off autogenerate, how do
you expect columns to show up?

Jim Mitchell wrote:
Thank you for the very detailed answer. I guess I was trying to force
something to happen in the page_load event chasing a challenge I have posted in the Datagrid forum. Nevertheless, your answer reconfirmed the way I
thought it should be happening. I will take your suggestion on the event reading. If you think you might be able to help, I am taking action in the button_click event as shown below, but when I load a column in a datagrid at run time with no columns at design time (and no autogenerate columns), my datagrid dissappears on postback.

Everyone was saying to "make sure you bind the datagrid on postback" and
since binding in the button_click was not working, I kept trying to put it in the load page event. The code below works perfectly if I have even one column defined at design time, but as soon as I take all columns out at
design time, everything falls apart.

Thanks again for your help. Maybe you can catch something below that we are missing.

Jim


Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
BindGrid("Company")
End If
End Sub

Private Sub btnFillOne_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFillOne.Click

BindGrid("Company")

End Sub
Private Sub btnFillTwo_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFillTwo.Click

BindGrid("Contact")

End Sub

Sub BindGrid(ByVal field_name)

Dim mycn As SqlClient.SqlConnection

Dim daAccounts As SqlClient.SqlDataAdapter

Dim dsAccounts As New DataSet

Dim mysql As String

mycn = New
SqlClient.SqlConnection(System.Configuration.Confi gurationSettings.AppSettin gs("ConnectString"))

DataGrid1.Columns.Clear()

Dim dcolumn As System.Web.UI.WebControls.ButtonColumn

dcolumn = New System.Web.UI.WebControls.ButtonColumn

dcolumn.ButtonType = ButtonColumnType.LinkButton

dcolumn.DataTextField = field_name

dcolumn.HeaderText = field_name

dcolumn.CommandName = "Select"

dcolumn.Text = "Select"

If field_name = "Company" Then mysql = "Select * from tblCompanys"

If field_name = "Contact" Then mysql = "Select * from tblContacts"

daAccounts = New SqlClient.SqlDataAdapter(mysql, mycn)

daAccounts.Fill(dsAccounts)

DataGrid1.DataSource = dsAccounts

DataGrid1.DataKeyField = "ID"

DataGrid1.Columns.Add(dcolumn)

DataGrid1.DataBind()

mycn.Close()

End Sub


"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:YS***********************@news3.calgary.shaw. ca...
to answer your other question, viewstate is restored during page_init
which happens before page_load.

also, i think the real problem you are having is where to put your code.
do not take action on postback in the page_lod event (in this case).
instead, take action in the bottun's click event since you are
responding to the click event.

i'd encourage you to do some reading on event handlers. a good start
would be the following link (in internet explorer) provided you have the
visual studio.net documentation installed:


ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vbconWebFormsPageProcessingStages.htm
Jim Mitchell wrote:
Am I correct to assume that any changes to a control's properties or


changes
to a ViewState("Name") are not available until after the Page_Load


fires?
If so, how can you set a flag in a control event so that you can take


action
on postback?

I have the following code..... The window.alert always reads 0
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

'Put user code to initialize the page here

If not ispostback then

textbox1.text = 0

end if

Response.Write("<script language=javascript>window.alert('textbox1 = " &TextBox1.Text & "')</script>")

End Sub
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBindContacts.Click

TextBox1.Text = 1

ViewState("CallType") = 1

End Sub


Jul 19 '05 #7
Thanks for your patience with me. I think you are on to something. When
things get crazy, try deleting the datagrid and adding a fresh copy. It
certainly seemed to work in this case.

Jim

"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:MK*******************@news1.calgary.shaw.ca.. .
i tried your scenario and it works for me (only one column is shown of
course). since your datagrid has no design time configuration, i'd
suggest you delete it and create a new one. that saved me lots of
headaches in the past.

Jim Mitchell wrote:
The bindgrid routine adds the columns at run time from the btn click event.
Jim
"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:9R*******************@news1.calgary.shaw.ca.. .
i just did this with no columns defined at run time and it works.
however i have autogenerate turned on. i don't see anywhere in your code
that you generate the columns, so if you turn off autogenerate, how do
you expect columns to show up?

Jim Mitchell wrote:

Thank you for the very detailed answer. I guess I was trying to force
something to happen in the page_load event chasing a challenge I have


posted
in the Datagrid forum. Nevertheless, your answer reconfirmed the way I
thought it should be happening. I will take your suggestion on the


event
reading. If you think you might be able to help, I am taking action in


the
button_click event as shown below, but when I load a column in a


datagrid at
run time with no columns at design time (and no autogenerate columns),


my
datagrid dissappears on postback.

Everyone was saying to "make sure you bind the datagrid on postback" andsince binding in the button_click was not working, I kept trying to put


it
in the load page event. The code below works perfectly if I have even


one
column defined at design time, but as soon as I take all columns out at
design time, everything falls apart.

Thanks again for your help. Maybe you can catch something below that we

are
missing.

Jim


Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
BindGrid("Company")
End If
End Sub

Private Sub btnFillOne_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFillOne.Click

BindGrid("Company")

End Sub
Private Sub btnFillTwo_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFillTwo.Click

BindGrid("Contact")

End Sub

Sub BindGrid(ByVal field_name)

Dim mycn As SqlClient.SqlConnection

Dim daAccounts As SqlClient.SqlDataAdapter

Dim dsAccounts As New DataSet

Dim mysql As String

mycn = New


SqlClient.SqlConnection(System.Configuration.Confi gurationSettings.AppSettin
gs("ConnectString"))

DataGrid1.Columns.Clear()

Dim dcolumn As System.Web.UI.WebControls.ButtonColumn

dcolumn = New System.Web.UI.WebControls.ButtonColumn

dcolumn.ButtonType = ButtonColumnType.LinkButton

dcolumn.DataTextField = field_name

dcolumn.HeaderText = field_name

dcolumn.CommandName = "Select"

dcolumn.Text = "Select"

If field_name = "Company" Then mysql = "Select * from tblCompanys"

If field_name = "Contact" Then mysql = "Select * from tblContacts"

daAccounts = New SqlClient.SqlDataAdapter(mysql, mycn)

daAccounts.Fill(dsAccounts)

DataGrid1.DataSource = dsAccounts

DataGrid1.DataKeyField = "ID"

DataGrid1.Columns.Add(dcolumn)

DataGrid1.DataBind()

mycn.Close()

End Sub


"Kairi Zikpin" <zikkai.nospam.@netscape.net> wrote in message
news:YS***********************@news3.calgary.sh aw.ca...
>to answer your other question, viewstate is restored during page_init
>which happens before page_load.
>
>also, i think the real problem you are having is where to put your
code.>do not take action on postback in the page_lod event (in this case).
>instead, take action in the bottun's click event since you are
>responding to the click event.
>
>i'd encourage you to do some reading on event handlers. a good start
>would be the following link (in internet explorer) provided you have the>visual studio.net documentation installed:
>
>

ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vbconWebFormsPageProcessingStages.htm
>Jim Mitchell wrote:
>
>
>
>>Am I correct to assume that any changes to a control's properties or

changes
>>to a ViewState("Name") are not available until after the Page_Load

fires?
>>If so, how can you set a flag in a control event so that you can take

action
>>on postback?
>>
>>I have the following code..... The window.alert always reads 0
>>
>>
>>Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
>>System.EventArgs) Handles MyBase.Load
>>
>>'Put user code to initialize the page here
>>
>>If not ispostback then
>>
>> textbox1.text = 0
>>
>>end if
>>
>>Response.Write("<script language=javascript>window.alert('textbox1 =
"
&
>>TextBox1.Text & "')</script>")
>>
>>End Sub
>>
>>
>>Private Sub button1_Click(ByVal sender As System.Object, ByVal e As
>>System.EventArgs) Handles btnBindContacts.Click
>>
>>TextBox1.Text = 1
>>
>>ViewState("CallType") = 1
>>
>>End Sub
>>
>>
>


Jul 19 '05 #8

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

Similar topics

2
by: John Lemire | last post by:
Hi, I have a connection which after an initial handshake has one way traffic. I am sending bursty data. When I write a data buffer (variable size) the last portion of it is not sent to the server...
5
by: Glenn Wilson | last post by:
I am writing a network system for project I am working on. How would I send a class or structure to the clients and recieve one back. Or how would I go about building a packet with a header and...
3
by: Beryl Small | last post by:
Hi, I have a third party software that needs to send information to an .aspx page for processing to communicate with an SQL database. The software sends the information something like this: ...
8
by: siol | last post by:
Hy! I have htmleditor (from the microsoft's samples page) embeded into my asp.net page. Editor generates some html code inside <div id="oDiv"></div> tags. And what I would like to do is return...
4
by: Christina N | last post by:
What is the easiest way to make an ASP.Net application send data to another web-app? For instance I would like APP3 to log user stats from APP1 and APP2. The applications are located on different...
7
by: Lau | last post by:
I need to send 1000 emails from an asp.net website. Normally I would use System.Web.Mail.MailMessage() to send thru an SMTP server. But the large amount of emails results in a timeout. My server...
5
by: Vishal | last post by:
Hello, I already asked this question in the ASP.NET forums, but no help came. So I am hoping that somebody can help me out. This is really very URGENT me. For my e-commerce application, I...
9
by: Miro | last post by:
VB 2003 at the end of the code, this works great. bytCommand = Encoding.ASCII.GetBytes("testing hello send text") udpClient.Send(bytCommand, bytCommand.Length) and this recieves it Dim...
10
by: James | last post by:
Hello, as this falls under both VB and PHP I have posted this into two newsgroups (this is the first time I've done this so if it is mucked up then I'm sorry). Anyway I want to make some simple...
10
by: Markgoldin | last post by:
I am sending an XML data from not dontnet process to a .Net via socket listener. Here is a data sample: <VFPData> <serverdata> <coderun>updateFloor</coderun> <area>MD2</area>...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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...
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
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
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...

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.