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

Property values disappear on postback

Hi,

I make use of properties to store values that are relevant to the page but
this time I am posting the page to itself and the values are Zero or null
(they disappear). is there any other way I can store them/preserve them so
that when I post back I can use the values.
I tried session and it works but some other ideas would be helpful.

Appreciate your help,
Stephen
Aug 14 '06 #1
8 2235
Can you be more specific? What properties of what objects are you setting?
How are you setting them? When are you setting them?
"stephen" <st********@hotmail.comwrote in message
news:u2****************@TK2MSFTNGP04.phx.gbl...
Hi,

I make use of properties to store values that are relevant to the page but
this time I am posting the page to itself and the values are Zero or null
(they disappear). is there any other way I can store them/preserve them so
that when I post back I can use the values.
I tried session and it works but some other ideas would be helpful.

Appreciate your help,
Stephen

Aug 14 '06 #2
Hi Scott,

Thanks for the reply, This is my task. I take an itemnumber, saledate
retieve all info (there can be multiple values) and display it on a grid.
then the user can click on a specific value and now I take the values again
(this time 3 values... itemnumber, saledate and OpType) and retieve info and
display on another grid.

So the first time a user inputs itemnumber and saledate.. and clicks the
button I store it in properties like this
Public Property SPItemNumber() As integer
Get
Return viewstate("SPItemNumber")

End Get
Set(ByVal Value As integer)
ViewState("SPItemNumber") = Value

End Set
End Property

Public Property SPSaleDate() As Date
Get
Return viewstate("SPSaleDate")

End Get
Set(ByVal Value As Date)
ViewState("SPSaleDate") = Value

End Set
End Property
I set it when i user clicks the button to get the information
(firstDatagrid) and this has a itemtemplate like this
<asp:TemplateColumn HeaderText="Op Type" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:HyperLink runat="server" id="OPLink" text='<%#
DataBinder.Eval(Container.DataItem, "optype") %>' NavigateUrl='<%#
"default.aspx?optype=" & Container.DataItem("optype") %>' />
</ItemTemplate>
</asp:TemplateColumn>

but it clears out when I click on the link.... i know it posts to the same
page... but why does the property value cleared?

Thanks,
Stephen


"Scott M." <s-***@nospam.nospamwrote in message
news:uF****************@TK2MSFTNGP05.phx.gbl...
Can you be more specific? What properties of what objects are you
setting? How are you setting them? When are you setting them?
"stephen" <st********@hotmail.comwrote in message
news:u2****************@TK2MSFTNGP04.phx.gbl...
>Hi,

I make use of properties to store values that are relevant to the page
but this time I am posting the page to itself and the values are Zero or
null (they disappear). is there any other way I can store them/preserve
them so that when I post back I can use the values.
I tried session and it works but some other ideas would be helpful.

Appreciate your help,
Stephen


Aug 14 '06 #3
Well what is this property a property of? And, I also don't see any lines
of code that actually call the set portion of your properties.

When are you writing this code:

SPItemNumber = something
SPSaleDate = something
"stephen" <st********@hotmail.comwrote in message
news:us******************@TK2MSFTNGP04.phx.gbl...
Hi Scott,

Thanks for the reply, This is my task. I take an itemnumber, saledate
retieve all info (there can be multiple values) and display it on a grid.
then the user can click on a specific value and now I take the values
again (this time 3 values... itemnumber, saledate and OpType) and retieve
info and display on another grid.

So the first time a user inputs itemnumber and saledate.. and clicks the
button I store it in properties like this
Public Property SPItemNumber() As integer
Get
Return viewstate("SPItemNumber")

End Get
Set(ByVal Value As integer)
ViewState("SPItemNumber") = Value

End Set
End Property

Public Property SPSaleDate() As Date
Get
Return viewstate("SPSaleDate")

End Get
Set(ByVal Value As Date)
ViewState("SPSaleDate") = Value

End Set
End Property
I set it when i user clicks the button to get the information
(firstDatagrid) and this has a itemtemplate like this
<asp:TemplateColumn HeaderText="Op Type"
ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:HyperLink runat="server" id="OPLink" text='<%#
DataBinder.Eval(Container.DataItem, "optype") %>' NavigateUrl='<%#
"default.aspx?optype=" & Container.DataItem("optype") %>' />
</ItemTemplate>
</asp:TemplateColumn>

but it clears out when I click on the link.... i know it posts to the same
page... but why does the property value cleared?

Thanks,
Stephen


"Scott M." <s-***@nospam.nospamwrote in message
news:uF****************@TK2MSFTNGP05.phx.gbl...
>Can you be more specific? What properties of what objects are you
setting? How are you setting them? When are you setting them?
"stephen" <st********@hotmail.comwrote in message
news:u2****************@TK2MSFTNGP04.phx.gbl...
>>Hi,

I make use of properties to store values that are relevant to the page
but this time I am posting the page to itself and the values are Zero or
null (they disappear). is there any other way I can store them/preserve
them so that when I post back I can use the values.
I tried session and it works but some other ideas would be helpful.

Appreciate your help,
Stephen



Aug 14 '06 #4
Hi Scott,

I am sorry.. i do it at the click event of a button so that it sets the
values that were in the respective textboxes
e.g
SPItemNumber = integer.parse(textbox1.text)
SPSaleDate = date.parse(textbox2.text)
I set the values first then call the stp for the first Datagrid and then
bind it.... then on clicking the "HyperLink" in the datagrid postback to the
same page, call another STP (3 parameters) and bind the second datagrid

Am i presenting the situation correctly this time,
Thanks,
Stephen

"Scott M." <s-***@nospam.nospamwrote in message
news:eL**************@TK2MSFTNGP03.phx.gbl...
Well what is this property a property of? And, I also don't see any lines
of code that actually call the set portion of your properties.

When are you writing this code:

SPItemNumber = something
SPSaleDate = something
"stephen" <st********@hotmail.comwrote in message
news:us******************@TK2MSFTNGP04.phx.gbl...
>Hi Scott,

Thanks for the reply, This is my task. I take an itemnumber, saledate
retieve all info (there can be multiple values) and display it on a grid.
then the user can click on a specific value and now I take the values
again (this time 3 values... itemnumber, saledate and OpType) and retieve
info and display on another grid.

So the first time a user inputs itemnumber and saledate.. and clicks the
button I store it in properties like this
Public Property SPItemNumber() As integer
Get
Return viewstate("SPItemNumber")

End Get
Set(ByVal Value As integer)
ViewState("SPItemNumber") = Value

End Set
End Property

Public Property SPSaleDate() As Date
Get
Return viewstate("SPSaleDate")

End Get
Set(ByVal Value As Date)
ViewState("SPSaleDate") = Value

End Set
End Property
I set it when i user clicks the button to get the information
(firstDatagrid) and this has a itemtemplate like this
<asp:TemplateColumn HeaderText="Op Type"
ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:HyperLink runat="server" id="OPLink" text='<%#
DataBinder.Eval(Container.DataItem, "optype") %>' NavigateUrl='<%#
"default.aspx?optype=" & Container.DataItem("optype") %>' />
</ItemTemplate>
</asp:TemplateColumn>

but it clears out when I click on the link.... i know it posts to the
same page... but why does the property value cleared?

Thanks,
Stephen


"Scott M." <s-***@nospam.nospamwrote in message
news:uF****************@TK2MSFTNGP05.phx.gbl...
>>Can you be more specific? What properties of what objects are you
setting? How are you setting them? When are you setting them?
"stephen" <st********@hotmail.comwrote in message
news:u2****************@TK2MSFTNGP04.phx.gbl.. .
Hi,

I make use of properties to store values that are relevant to the page
but this time I am posting the page to itself and the values are Zero
or null (they disappear). is there any other way I can store
them/preserve them so that when I post back I can use the values.
I tried session and it works but some other ideas would be helpful.

Appreciate your help,
Stephen



Aug 14 '06 #5
Not yet. When you have questions of this kind, it's best to provide us with
your code (not just bits and pieces). Let's see all your code.

I think the problem is you are trying to set the property values once they
are already gone.

"stephen" <st********@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Hi Scott,

I am sorry.. i do it at the click event of a button so that it sets the
values that were in the respective textboxes
e.g
SPItemNumber = integer.parse(textbox1.text)
SPSaleDate = date.parse(textbox2.text)
I set the values first then call the stp for the first Datagrid and then
bind it.... then on clicking the "HyperLink" in the datagrid postback to
the same page, call another STP (3 parameters) and bind the second
datagrid

Am i presenting the situation correctly this time,
Thanks,
Stephen

"Scott M." <s-***@nospam.nospamwrote in message
news:eL**************@TK2MSFTNGP03.phx.gbl...
>Well what is this property a property of? And, I also don't see any
lines of code that actually call the set portion of your properties.

When are you writing this code:

SPItemNumber = something
SPSaleDate = something
"stephen" <st********@hotmail.comwrote in message
news:us******************@TK2MSFTNGP04.phx.gbl. ..
>>Hi Scott,

Thanks for the reply, This is my task. I take an itemnumber, saledate
retieve all info (there can be multiple values) and display it on a
grid. then the user can click on a specific value and now I take the
values again (this time 3 values... itemnumber, saledate and OpType) and
retieve info and display on another grid.

So the first time a user inputs itemnumber and saledate.. and clicks the
button I store it in properties like this
Public Property SPItemNumber() As integer
Get
Return viewstate("SPItemNumber")

End Get
Set(ByVal Value As integer)
ViewState("SPItemNumber") = Value

End Set
End Property

Public Property SPSaleDate() As Date
Get
Return viewstate("SPSaleDate")

End Get
Set(ByVal Value As Date)
ViewState("SPSaleDate") = Value

End Set
End Property
I set it when i user clicks the button to get the information
(firstDatagrid) and this has a itemtemplate like this
<asp:TemplateColumn HeaderText="Op Type"
ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:HyperLink runat="server" id="OPLink" text='<%#
DataBinder.Eval(Container.DataItem, "optype") %>' NavigateUrl='<%#
"default.aspx?optype=" & Container.DataItem("optype") %>' />
</ItemTemplate>
</asp:TemplateColumn>

but it clears out when I click on the link.... i know it posts to the
same page... but why does the property value cleared?

Thanks,
Stephen


"Scott M." <s-***@nospam.nospamwrote in message
news:uF****************@TK2MSFTNGP05.phx.gbl.. .
Can you be more specific? What properties of what objects are you
setting? How are you setting them? When are you setting them?
"stephen" <st********@hotmail.comwrote in message
news:u2****************@TK2MSFTNGP04.phx.gbl. ..
Hi,
>
I make use of properties to store values that are relevant to the page
but this time I am posting the page to itself and the values are Zero
or null (they disappear). is there any other way I can store
them/preserve them so that when I post back I can use the values.
I tried session and it works but some other ideas would be helpful.
>
Appreciate your help,
Stephen
>




Aug 15 '06 #6
Hi Scott,

Sorry for the late late reply...
here is the code that I use
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 Page.IsPostBack Then
setValues() --Setting basic values
SPOpType = Request.QueryString("optype")
If Not SPOpType = "" Then
getDetails()
makeVisible() --Making Panels Visible

Else
makeInvisible() --Making Panels InVisible

End If

End If
End Sub

Private Sub btnGrid_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnGrid.Click
Dim dsCompare As DataSet
SPItemNumber = integer.parse(txtEVID.Text)
SPSaleDate = date.parse(txtSDate.Text)
Try
dsCompare = db.GetCompare(SPItemNumber, SPSaleDate)
If Not dsCompare Is Nothing Then
SPDGCompare = dsCompare
dgCompare.DataSource = dsCompare
dgCompare.DataBind()
pnlCompare.Visible = True

End If

Catch ex As Exception
errLog.LogIt("Binding Compare Grid Error", ex, "")

End Try

End Sub

Private Sub getDetails()
Dim ds As DataSet
Dim dsSum As DataSet
Try
dgCompare.DataSource = SPDGCompare
dgCompare.DataBind()

Catch ex As Exception
errLog.LogIt("Binding Grid1 Error", ex, "")

End Try

Try
ds = db.GetDetails1(SPItemNumber, SPSaleDate, SAPOpType)
dgScroll.DataSource = ds
dgScroll.DataBind()
Catch ex As Exception
errLog.LogIt("Binding Grid2 Error", ex, "")

End Try
Try
dsSum = db.GetDetails2(SPItemNumber, SPSaleDate, SAPOpType)
dgSummary.DataSource = dsSum
dgSummary.DataBind()

Catch ex As Exception
errLog.LogIt("Binding Grid3 Error", ex, "")

End Try
End Sub

Public Property SPItemNumber() As integer
Get
Return viewstate("SPItemNumber")

End Get
Set(ByVal Value As integer)
ViewState("SPItemNumber") = Value

End Set
End Property

Public Property SPSaleDate() As Date
Get
Return viewstate("SPSaleDate")

End Get
Set(ByVal Value As Date)
ViewState("SPSaleDate") = Value

End Set
End Property

Public Property SPOpType() As String
Get
Return viewstate("SPOpType")

End Get
Set(ByVal Value As String)
ViewState("SPOpType") = Value

End Set
End Property

Public Property SPDGCompare() As DataSet
Get
Return viewstate("SPDGCompare")

End Get
Set(ByVal Value As DataSet)
ViewState("SPDGCompare") = Value

End Set
End Property


"Scott M." <s-***@nospam.nospamwrote in message
news:e%****************@TK2MSFTNGP02.phx.gbl...
Not yet. When you have questions of this kind, it's best to provide us
with your code (not just bits and pieces). Let's see all your code.

I think the problem is you are trying to set the property values once they
are already gone.

"stephen" <st********@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
>Hi Scott,

I am sorry.. i do it at the click event of a button so that it sets the
values that were in the respective textboxes
e.g
SPItemNumber = integer.parse(textbox1.text)
SPSaleDate = date.parse(textbox2.text)
I set the values first then call the stp for the first Datagrid and then
bind it.... then on clicking the "HyperLink" in the datagrid postback to
the same page, call another STP (3 parameters) and bind the second
datagrid

Am i presenting the situation correctly this time,
Thanks,
Stephen

"Scott M." <s-***@nospam.nospamwrote in message
news:eL**************@TK2MSFTNGP03.phx.gbl...
>>Well what is this property a property of? And, I also don't see any
lines of code that actually call the set portion of your properties.

When are you writing this code:

SPItemNumber = something
SPSaleDate = something
"stephen" <st********@hotmail.comwrote in message
news:us******************@TK2MSFTNGP04.phx.gbl.. .
Hi Scott,

Thanks for the reply, This is my task. I take an itemnumber, saledate
retieve all info (there can be multiple values) and display it on a
grid. then the user can click on a specific value and now I take the
values again (this time 3 values... itemnumber, saledate and OpType)
and retieve info and display on another grid.

So the first time a user inputs itemnumber and saledate.. and clicks
the button I store it in properties like this
Public Property SPItemNumber() As integer
Get
Return viewstate("SPItemNumber")

End Get
Set(ByVal Value As integer)
ViewState("SPItemNumber") = Value

End Set
End Property

Public Property SPSaleDate() As Date
Get
Return viewstate("SPSaleDate")

End Get
Set(ByVal Value As Date)
ViewState("SPSaleDate") = Value

End Set
End Property
I set it when i user clicks the button to get the information
(firstDatagrid) and this has a itemtemplate like this
<asp:TemplateColumn HeaderText="Op Type"
ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:HyperLink runat="server" id="OPLink" text='<%#
DataBinder.Eval(Container.DataItem, "optype") %>' NavigateUrl='<%#
"default.aspx?optype=" & Container.DataItem("optype") %>' />
</ItemTemplate>
</asp:TemplateColumn>

but it clears out when I click on the link.... i know it posts to the
same page... but why does the property value cleared?

Thanks,
Stephen


"Scott M." <s-***@nospam.nospamwrote in message
news:uF****************@TK2MSFTNGP05.phx.gbl. ..
Can you be more specific? What properties of what objects are you
setting? How are you setting them? When are you setting them?
>
>
"stephen" <st********@hotmail.comwrote in message
news:u2****************@TK2MSFTNGP04.phx.gbl.. .
>Hi,
>>
>I make use of properties to store values that are relevant to the
>page but this time I am posting the page to itself and the values are
>Zero or null (they disappear). is there any other way I can store
>them/preserve them so that when I post back I can use the values.
>I tried session and it works but some other ideas would be helpful.
>>
>Appreciate your help,
>Stephen
>>
>
>




Aug 15 '06 #7
Well, you are using properties (which will be reset each time the page
loads) and ViewState (which will persist) when all you really need is
ViewState and forget the properties all-together. You are making your code
more difficult than it need be.

In the spots where you want to store data for the next page call, just put
that data directly into ViewState and forget the properties. When you need
the data, just pull it out of ViewState.

How about this:

Private Sub Page_Load( . . .) Handles MyBase.Load
If Not IsPostBack Then
setValues() --Setting basic values
SPOpType = Request.QueryString("optype")
If Not SPOpType = "" Then
getDetails()
makeVisible() --Making Panels Visible
Else
makeInvisible() --Making Panels InVisible
End If
End If
End Sub

Private Sub btnGrid_Click( . . . ) Handles btnGrid.Click
Dim dsCompare As DataSet

'No need to cast thse text values since they will become objects in
ViewState anyway
ViewState.Add("SPItemNumber", txtEVID.Text)
ViewState.Add("SPSaleDate", txtSDate.Text)

Try
' DOES db.GetCompare() ON THE NEXT LINE RETURN A DATASET?
' If not, then dsCompare is not going to be instantiated as a
NEW dataset.
dsCompare = db.GetCompare(CType(txtEVID.Text, Integer),
Ctype(txtSDate.Text, Date))

If Not dsCompare Is Nothing Then
ViewState.Add("SPDGCompare", dsCompare)
dgCompare.DataSource = dsCompare
dgCompare.DataBind()
pnlCompare.Visible = True
End If
Catch ex As Exception
errLog.LogIt("Binding Compare Grid Error", ex, "")
End Try
End Sub

Private Sub getDetails()
Dim ds As DataSet
Dim dsSum As DataSet

Dim SPItemNumber As Integer = CType(ViewState("SPItemNumber",
Integer))
Dim SPSaleDAte As Date = CType(ViewState("SPSaleDate", Date))

Try
dgCompare.DataSource = CType(ViewState("SPDGCompare") , DataSet)
dgCompare.DataBind()
Catch ex As Exception
errLog.LogIt("Binding Grid1 Error", ex, "")
End Try

ViewState.Add("SPItemNumber", txtEVID.Text)
ViewState.Add("SPSaleDate", txtSDate.Text)

Try
ds = db.GetDetails1(SPItemNumber, SPSaleDate, SAPOpType)
dgScroll.DataSource = ds
dgScroll.DataBind()
Catch ex As Exception
errLog.LogIt("Binding Grid2 Error", ex, "")
End Try

Try
dsSum = db.GetDetails2(SPItemNumber, SPSaleDate, SAPOpType)
dgSummary.DataSource = dsSum
dgSummary.DataBind()
Catch ex As Exception
errLog.LogIt("Binding Grid3 Error", ex, "")
End Try
End Sub

Aug 16 '06 #8
thanks Scott,
Will try this,
Stephen
"Scott M." <s-***@nospam.nospamwrote in message
news:%2***************@TK2MSFTNGP03.phx.gbl...
Well, you are using properties (which will be reset each time the page
loads) and ViewState (which will persist) when all you really need is
ViewState and forget the properties all-together. You are making your
code more difficult than it need be.

In the spots where you want to store data for the next page call, just put
that data directly into ViewState and forget the properties. When you
need the data, just pull it out of ViewState.

How about this:

Private Sub Page_Load( . . .) Handles MyBase.Load
If Not IsPostBack Then
setValues() --Setting basic values
SPOpType = Request.QueryString("optype")
If Not SPOpType = "" Then
getDetails()
makeVisible() --Making Panels Visible
Else
makeInvisible() --Making Panels InVisible
End If
End If
End Sub

Private Sub btnGrid_Click( . . . ) Handles btnGrid.Click
Dim dsCompare As DataSet

'No need to cast thse text values since they will become objects in
ViewState anyway
ViewState.Add("SPItemNumber", txtEVID.Text)
ViewState.Add("SPSaleDate", txtSDate.Text)

Try
' DOES db.GetCompare() ON THE NEXT LINE RETURN A DATASET?
' If not, then dsCompare is not going to be instantiated as a
NEW dataset.
dsCompare = db.GetCompare(CType(txtEVID.Text, Integer),
Ctype(txtSDate.Text, Date))

If Not dsCompare Is Nothing Then
ViewState.Add("SPDGCompare", dsCompare)
dgCompare.DataSource = dsCompare
dgCompare.DataBind()
pnlCompare.Visible = True
End If
Catch ex As Exception
errLog.LogIt("Binding Compare Grid Error", ex, "")
End Try
End Sub

Private Sub getDetails()
Dim ds As DataSet
Dim dsSum As DataSet

Dim SPItemNumber As Integer = CType(ViewState("SPItemNumber",
Integer))
Dim SPSaleDAte As Date = CType(ViewState("SPSaleDate", Date))

Try
dgCompare.DataSource = CType(ViewState("SPDGCompare") , DataSet)
dgCompare.DataBind()
Catch ex As Exception
errLog.LogIt("Binding Grid1 Error", ex, "")
End Try

ViewState.Add("SPItemNumber", txtEVID.Text)
ViewState.Add("SPSaleDate", txtSDate.Text)

Try
ds = db.GetDetails1(SPItemNumber, SPSaleDate, SAPOpType)
dgScroll.DataSource = ds
dgScroll.DataBind()
Catch ex As Exception
errLog.LogIt("Binding Grid2 Error", ex, "")
End Try

Try
dsSum = db.GetDetails2(SPItemNumber, SPSaleDate, SAPOpType)
dgSummary.DataSource = dsSum
dgSummary.DataBind()
Catch ex As Exception
errLog.LogIt("Binding Grid3 Error", ex, "")
End Try
End Sub

Aug 16 '06 #9

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

Similar topics

2
by: endus | last post by:
I'm having some trouble getting something to work. I'm not even sure whether or not this is possible, but it *seems* like it should be. I've done a fair amount of experimenting and googling...but...
3
by: Mike Dole | last post by:
I experimented with a usercontrol (TagedTextbox), I added a tag property. The tag value however is not persisted on postback (text value's fine)? I worked around it with: Me.ViewState("tag")...
4
by: Mark Broadbent | last post by:
This one has got me absolutely stumped. At work I have created a simple web form that gets data from a sql backend and puts this to a dataset. I have an edit button that when clicked will set...
1
by: Simon Wallis | last post by:
Hi, I have a PlaceHolder on a place, to which I add a DropDownList (using myPlaceHolder.Controls.Add(ddl). The user selects something from the DropDownList and posts the page. Now I try to get...
5
by: BLACKDOG157 | last post by:
I've made a form with a variable number of textboxes. The user fills them out, and then I need to pick up the values he has filled in. The number of textboxes vary depending on a value that the...
2
by: Robert Fernandez | last post by:
I've got a gridview with BoundFields and TemplateFields and a linkbutton with a CommandName="Select". When I click on this linkbutton the TemplateField objects disappear on postback but the...
5
by: Nathan Sokalski | last post by:
I have a custom control that I wrote (I inherit from System.Web.UI.WebControls.CompositeControl). I dynamically add this control to my Page, but I was told that dynamically added controls do not...
15
RMWChaos
by: RMWChaos | last post by:
As usual, an overly-long, overly-explanatory post. Better too much info than too little, right? A couple weeks ago, I asked for some assistance iterating through a JSON property list so that my...
0
by: michavo2000 | last post by:
Ok, first of all, forgiveness for my English. I understand the sequence of events within a control. However, I have a problem when dynamically generates controles. The Control, loads a...
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
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: 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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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.