473,473 Members | 2,319 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Sorting Question

Here is my code. I am trying to see if I can put a

%@ LANGUAGE="VBSCRIPT" %>

<%
FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")

response.write("<TABLE ALIGN=CENTER>")
response.write("<TR bgcolor=#990033>")
response.write("<TD align=center width=200><b><font color=white size=2
face=Tahoma>")
response.write("FieldA")
response.write("</TD></b>")
response.write("<TD align=center width=200><b><font color=white size=2
face=Tahoma>")
response.write("FieldB")
response.write("</TD></b>")
response.write("</TR>")
response.write("<TR>")
response.write("<TD align=center bgcolor=#f6f0e3 width=200><font size=2
face=Tahoma>")
response.write("FieldC")
response.write("</TD>")
response.write("</TR>")
response.write("</TABLE>")

Then my data is displayed from the QueryString info above.
------

I would like to make the header row sortable by clicking on the field name.
I have tried use A HREF and passing a variable called sort, but it doesn't
seem to work. Any help is much appreciated.


Jul 22 '05 #1
9 1639
you'll have to add a full HREF or onClick to the header, with the info in it

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"SASRS" <mc******@srs.com> wrote in message
news:u9**************@TK2MSFTNGP11.phx.gbl...
Here is my code. I am trying to see if I can put a

%@ LANGUAGE="VBSCRIPT" %>

<%
FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")

response.write("<TABLE ALIGN=CENTER>")
response.write("<TR bgcolor=#990033>")
response.write("<TD align=center width=200><b><font color=white size=2
face=Tahoma>")
response.write("FieldA")
response.write("</TD></b>")
response.write("<TD align=center width=200><b><font color=white size=2
face=Tahoma>")
response.write("FieldB")
response.write("</TD></b>")
response.write("</TR>")
response.write("<TR>")
response.write("<TD align=center bgcolor=#f6f0e3 width=200><font size=2
face=Tahoma>")
response.write("FieldC")
response.write("</TD>")
response.write("</TR>")
response.write("</TABLE>")

Then my data is displayed from the QueryString info above.
------

I would like to make the header row sortable by clicking on the field
name.
I have tried use A HREF and passing a variable called sort, but it doesn't
seem to work. Any help is much appreciated.

Jul 22 '05 #2
SASRS wrote:
FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")
...
I would like to make the header row sortable by clicking on
the field name. I have tried use A HREF and passing a variable
called sort, but it doesn't seem to work. Any help is much
appreciated.


Are you asking how to (a) conditionally ask the DB to sort, (b) sort the
data on the server once you get it back from the database, or (c) sort it on
the client side? Each requires a different approach.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 22 '05 #3
Sorting it on the client side
"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:Og**************@TK2MSFTNGP10.phx.gbl...
SASRS wrote:
FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")
...
I would like to make the header row sortable by clicking on
the field name. I have tried use A HREF and passing a variable
called sort, but it doesn't seem to work. Any help is much
appreciated.
Are you asking how to (a) conditionally ask the DB to sort, (b) sort the
data on the server once you get it back from the database, or (c) sort it

on the client side? Each requires a different approach.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use of this email address implies consent to these terms. Please do not contact me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.

Jul 22 '05 #4
ljb

"SASRS" <mc******@srs.com> wrote in message
news:u9**************@TK2MSFTNGP11.phx.gbl...
Here is my code. I am trying to see if I can put a

%@ LANGUAGE="VBSCRIPT" %>

<%
FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")

response.write("<TABLE ALIGN=CENTER>")
response.write("<TR bgcolor=#990033>")
response.write("<TD align=center width=200><b><font color=white size=2
face=Tahoma>")
response.write("FieldA")
response.write("</TD></b>")
response.write("<TD align=center width=200><b><font color=white size=2
face=Tahoma>")
response.write("FieldB")
response.write("</TD></b>")
response.write("</TR>")
response.write("<TR>")
response.write("<TD align=center bgcolor=#f6f0e3 width=200><font size=2
face=Tahoma>")
response.write("FieldC")
response.write("</TD>")
response.write("</TR>")
response.write("</TABLE>")

Then my data is displayed from the QueryString info above.
------

I would like to make the header row sortable by clicking on the field name. I have tried use A HREF and passing a variable called sort, but it doesn't
seem to work. Any help is much appreciated.


http://www.romankoch.ch/capslock/tablesort.htm - Client side sorting of an
HTML table.

Sorting large tables client side may get somewhat slow but it doesn't
require anything of the server.
Jul 22 '05 #5
It is actually server-side, not client side, but client-side might work for
me.

This is what I have so far, I am trying to re-pass the values back to the
page.

<a
href="http://s2.asp?sort=1?FieldA=<%=FieldA%>?FieldB=<%=FieldB% >?FieldC=<%=F
ieldC%>">

I see the values when I hover over the link, but when i hit the link, my
results are blank. I believe I am overwriting the values below. How can I
work around that.

FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")
"SASRS" <mc******@srs.com> wrote in message
news:OO**************@TK2MSFTNGP11.phx.gbl...
Sorting it on the client side
"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:Og**************@TK2MSFTNGP10.phx.gbl...
SASRS wrote:
FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")
...
I would like to make the header row sortable by clicking on
the field name. I have tried use A HREF and passing a variable
called sort, but it doesn't seem to work. Any help is much
appreciated.
Are you asking how to (a) conditionally ask the DB to sort, (b) sort the
data on the server once you get it back from the database, or (c) sort

it on
the client side? Each requires a different approach.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message.

Use
of this email address implies consent to these terms. Please do not

contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.


Jul 22 '05 #6
Gazing into my crystal ball I observed "SASRS" <mc******@srs.com> writing
in news:uH**************@tk2msftngp13.phx.gbl:
"SASRS" <mc******@srs.com> wrote in message
news:OO**************@TK2MSFTNGP11.phx.gbl...
Sorting it on the client side
"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:Og**************@TK2MSFTNGP10.phx.gbl...
> SASRS wrote:
> > FieldA = Request.QueryString("A")
> > FieldB = Request.QueryString("B")
> > FieldC = Request.QueryString("C")
> > ...
> > I would like to make the header row sortable by clicking on
> > the field name. I have tried use A HREF and passing a variable
> > called sort, but it doesn't seem to work. Any help is much
> > appreciated.
>
> Are you asking how to (a) conditionally ask the DB to sort, (b) sort
> the data on the server once you get it back from the database, or
> (c) sort it on the client side? Each requires a different approach.
>
>
>

It is actually server-side, not client side, but client-side might work
for me.

This is what I have so far, I am trying to re-pass the values back to
the page.

<a
href="http://s2.asp?sort=1?FieldA=<%=FieldA%>?FieldB=<%=FieldB% >?FieldC=
<%=F ieldC%>">

I see the values when I hover over the link, but when i hit the link,
my results are blank. I believe I am overwriting the values below.
How can I work around that.

FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")


Here's what I do:

dim sort
sort = request.querystring("sort")

select case sort
case 1
sort = " ORDER BY field "
case 2
sort = " ORDER BY anotherfield "
case else
sort = " ORDER by field "
end select

sql = "SELECT records FROM table WHERE clause " & sort

Set rs = CreateObject("ADODB.Recordset")
rs.Open sql, connectionstring

if rs.EOF then
%>
<p>No records found</p>
<% else %>
<table summary="List of records">
<caption>List of Records</caption>
<thead>
<tr>
<th><a href="<%=request.servervariables("script_name")%>? sort=1">Field</a>
</th>
<th><a href="<%=request.servervariables("script_name")%>? sort=2">Another
Field</a></th>
</tr>
</thead>
<tbody>
<%
while not rs.EOF
field = trim(rs("field")
anotherfield = trim(rs("anotherfield"))
%>
<tr>
<td><%=field%></td><td><%=anotherfield%></td>
</tr>
<% rs.MoveNext
wend
rs.Close
set rs = nothing
set connectionstring = nothing
%>
</tbody>
</table>
<% end if%>

FYI, the TH element usually centers and bolds the content, so no need for
the depreciated B element. You might want to remove your presentational
markup and replace it with CSS, makes debugging so much easier.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 22 '05 #7
Thank you.

"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...
Gazing into my crystal ball I observed "SASRS" <mc******@srs.com> writing
in news:uH**************@tk2msftngp13.phx.gbl:
"SASRS" <mc******@srs.com> wrote in message
news:OO**************@TK2MSFTNGP11.phx.gbl...
Sorting it on the client side
"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:Og**************@TK2MSFTNGP10.phx.gbl...
> SASRS wrote:
> > FieldA = Request.QueryString("A")
> > FieldB = Request.QueryString("B")
> > FieldC = Request.QueryString("C")
> > ...
> > I would like to make the header row sortable by clicking on
> > the field name. I have tried use A HREF and passing a variable
> > called sort, but it doesn't seem to work. Any help is much
> > appreciated.
>
> Are you asking how to (a) conditionally ask the DB to sort, (b) sort
> the data on the server once you get it back from the database, or
> (c) sort it on the client side? Each requires a different approach.
>
>
>

It is actually server-side, not client side, but client-side might work
for me.

This is what I have so far, I am trying to re-pass the values back to
the page.

<a
href="http://s2.asp?sort=1?FieldA=<%=FieldA%>?FieldB=<%=FieldB% >?FieldC=
<%=F ieldC%>">

I see the values when I hover over the link, but when i hit the link,
my results are blank. I believe I am overwriting the values below.
How can I work around that.

FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")


Here's what I do:

dim sort
sort = request.querystring("sort")

select case sort
case 1
sort = " ORDER BY field "
case 2
sort = " ORDER BY anotherfield "
case else
sort = " ORDER by field "
end select

sql = "SELECT records FROM table WHERE clause " & sort

Set rs = CreateObject("ADODB.Recordset")
rs.Open sql, connectionstring

if rs.EOF then
%>
<p>No records found</p>
<% else %>
<table summary="List of records">
<caption>List of Records</caption>
<thead>
<tr>
<th><a href="<%=request.servervariables("script_name")%>? sort=1">Field</a>
</th>
<th><a href="<%=request.servervariables("script_name")%>? sort=2">Another
Field</a></th>
</tr>
</thead>
<tbody>
<%
while not rs.EOF
field = trim(rs("field")
anotherfield = trim(rs("anotherfield"))
%>
<tr>
<td><%=field%></td><td><%=anotherfield%></td>
</tr>
<% rs.MoveNext
wend
rs.Close
set rs = nothing
set connectionstring = nothing
%>
</tbody>
</table>
<% end if%>

FYI, the TH element usually centers and bolds the content, so no need for
the depreciated B element. You might want to remove your presentational
markup and replace it with CSS, makes debugging so much easier.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Jul 22 '05 #8
Adrienne

I tried your example and it clears out my values. I need to repass my
values back to the server (I think). The value of "sort" works when the
page loads. For example I change the "else" to "Code" and it sorts by Code,
but the default I want is State.
This is what I have it seems to be losing the values of "rState, insName,
and occFilt"

dim sort
sort = request.QueryString("sort")

select case sort
case 1
sort = " ORDER BY State "
case 2
sort = " ORDER BY Code "
case 3
sort = " ORDER BY Occupation "
case 4
sort = " ORDER by PolicyNumber "
case else
sort = " ORDER by State "
end select

rState = Request.QueryString("state")
insName = Request.QueryString("ins")
occFilt = Request.QueryString("fo")

table border="0" align="center" bgcolor="#990033">
<tr>
<td align=center width=50><font color=white size=2 face="Tahoma"><b><a
href="<%=request.servervariables("script_name")%>? sort=1">State</a></b></td>
<td align=center width=80><font color=white size=2 face="Tahoma"><b><a
href="<%=request.servervariables("script_name")%>? sort=2">Code</a></b></td>
<td align=center width=250><font color=white size=2
face="Tahoma"><b>Occupation</a></b></td>
<td align=center width=100><font color=white size=2 face="Tahoma"><b>Policy
Number</a></b></td>
<td align=center width=80><font color=white size=2
face="Tahoma"><b>Effective Date</b></td>
<td align=center width=80><font color=white size=2
face="Tahoma"><b>Expiration Date</b></td>
</tr>
</table>

Set Conn = Server.CreateObject("ADODB.Connection")
DSNtest="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtest=dsntest & "DBQ=" & Server.MapPath("ncci.mdb")
Conn.Open DSNtest

Set rs2 = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT * FROM NCCI2 where Insured = " & sIn(insName) & sort

rs2.Open strSQL, conn, 3, 3

if not rs2.eof then
nr = rs2.recordcount

for i = 1 to nr

%>
<table align="center">
<tr bgcolor="#f6f0e3">
<td align=center width=50><font size=2 face="Tahoma"><% = rs2("State")
%></td>
<td align=center width=80><font size=2 face="Tahoma"><% = rs2("Code")
%></td>
<td align=center width=250><font size=2 face="Tahoma"><% =
rs2("Occupation") %></td>
<td align=center width=100><font size=2 face="Tahoma"><% =
rs2("PolicyNumber") %></td>
<td align=center width=80><font size=2 face="Tahoma"><% =
rs2("PolicyEffective") %></td>
<td align=center width=80><font size=2 face="Tahoma"><% =
rs2("PolicyExpiration") %></td>
</tr>
<tr>
</table>

Please advise


"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...
Gazing into my crystal ball I observed "SASRS" <mc******@srs.com> writing
in news:uH**************@tk2msftngp13.phx.gbl:
"SASRS" <mc******@srs.com> wrote in message
news:OO**************@TK2MSFTNGP11.phx.gbl...
Sorting it on the client side
"Dave Anderson" <GT**********@spammotel.com> wrote in message
news:Og**************@TK2MSFTNGP10.phx.gbl...
> SASRS wrote:
> > FieldA = Request.QueryString("A")
> > FieldB = Request.QueryString("B")
> > FieldC = Request.QueryString("C")
> > ...
> > I would like to make the header row sortable by clicking on
> > the field name. I have tried use A HREF and passing a variable
> > called sort, but it doesn't seem to work. Any help is much
> > appreciated.
>
> Are you asking how to (a) conditionally ask the DB to sort, (b) sort
> the data on the server once you get it back from the database, or
> (c) sort it on the client side? Each requires a different approach.
>
>
>

It is actually server-side, not client side, but client-side might work
for me.

This is what I have so far, I am trying to re-pass the values back to
the page.

<a
href="http://s2.asp?sort=1?FieldA=<%=FieldA%>?FieldB=<%=FieldB% >?FieldC=
<%=F ieldC%>">

I see the values when I hover over the link, but when i hit the link,
my results are blank. I believe I am overwriting the values below.
How can I work around that.

FieldA = Request.QueryString("A")
FieldB = Request.QueryString("B")
FieldC = Request.QueryString("C")


Here's what I do:

dim sort
sort = request.querystring("sort")

select case sort
case 1
sort = " ORDER BY field "
case 2
sort = " ORDER BY anotherfield "
case else
sort = " ORDER by field "
end select

sql = "SELECT records FROM table WHERE clause " & sort

Set rs = CreateObject("ADODB.Recordset")
rs.Open sql, connectionstring

if rs.EOF then
%>
<p>No records found</p>
<% else %>
<table summary="List of records">
<caption>List of Records</caption>
<thead>
<tr>
<th><a href="<%=request.servervariables("script_name")%>? sort=1">Field</a>
</th>
<th><a href="<%=request.servervariables("script_name")%>? sort=2">Another
Field</a></th>
</tr>
</thead>
<tbody>
<%
while not rs.EOF
field = trim(rs("field")
anotherfield = trim(rs("anotherfield"))
%>
<tr>
<td><%=field%></td><td><%=anotherfield%></td>
</tr>
<% rs.MoveNext
wend
rs.Close
set rs = nothing
set connectionstring = nothing
%>
</tbody>
</table>
<% end if%>

FYI, the TH element usually centers and bolds the content, so no need for
the depreciated B element. You might want to remove your presentational
markup and replace it with CSS, makes debugging so much easier.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Jul 22 '05 #9
Gazing into my crystal ball I observed "SASRS" <mc******@srs.com> writing
in news:uU*************@TK2MSFTNGP11.phx.gbl:
"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...
Gazing into my crystal ball I observed "SASRS" <mc******@srs.com>
writing in news:uH**************@tk2msftngp13.phx.gbl:
> "SASRS" <mc******@srs.com> wrote in message
> news:OO**************@TK2MSFTNGP11.phx.gbl...
>> Sorting it on the client side
>>
>>
>> "Dave Anderson" <GT**********@spammotel.com> wrote in message
>> news:Og**************@TK2MSFTNGP10.phx.gbl...
>> > SASRS wrote:
>> > > FieldA = Request.QueryString("A")
>> > > FieldB = Request.QueryString("B")
>> > > FieldC = Request.QueryString("C")
>> > > ...
>> > > I would like to make the header row sortable by clicking on
>> > > the field name. I have tried use A HREF and passing a variable
>> > > called sort, but it doesn't seem to work. Any help is much
>> > > appreciated.
>> >
>> > Are you asking how to (a) conditionally ask the DB to sort, (b)
>> > sort the data on the server once you get it back from the
>> > database, or (c) sort it on the client side? Each requires a
>> > different approach.
>> >
>> >
>> >
> It is actually server-side, not client side, but client-side might
> work for me.
>
> This is what I have so far, I am trying to re-pass the values back
> to the page.
>
><a
> href="http://s2.asp?sort=1?FieldA=<%=FieldA%>?FieldB=<%=FieldB% >?Fiel
> dC= <%=F ieldC%>">
>
> I see the values when I hover over the link, but when i hit the
> link, my results are blank. I believe I am overwriting the values
> below. How can I work around that.
>
> FieldA = Request.QueryString("A")
> FieldB = Request.QueryString("B")
> FieldC = Request.QueryString("C")
>
>
Here's what I do:

dim sort
sort = request.querystring("sort")

select case sort
case 1
sort = " ORDER BY field "
case 2
sort = " ORDER BY anotherfield "
case else
sort = " ORDER by field "
end select

sql = "SELECT records FROM table WHERE clause " & sort

Set rs = CreateObject("ADODB.Recordset")
rs.Open sql, connectionstring

if rs.EOF then
%>
<p>No records found</p>
<% else %>
<table summary="List of records">
<caption>List of Records</caption> <thead> <tr>
<th><a
href="<%=request.servervariables("script_name")%>? sort=1">Field</a>
</th> <th><a
href="<%=request.servervariables("script_name")%>? sort=2">Another
Field</a></th> </tr>
</thead>
<tbody>
<%
while not rs.EOF
field = trim(rs("field")
anotherfield = trim(rs("anotherfield"))
%>
<tr>
<td><%=field%></td><td><%=anotherfield%></td> </tr>
<% rs.MoveNext
wend
rs.Close
set rs = nothing
set connectionstring = nothing %> </tbody> </table>
<% end if%>

FYI, the TH element usually centers and bolds the content, so no need
for the depreciated B element. You might want to remove your
presentational markup and replace it with CSS, makes debugging so much
easier.

Adrienne

I tried your example and it clears out my values. I need to repass my
values back to the server (I think). The value of "sort" works when
the page loads. For example I change the "else" to "Code" and it sorts
by Code, but the default I want is State.
This is what I have it seems to be losing the values of "rState,
insName, and occFilt"

dim sort
sort = request.QueryString("sort")

select case sort
case 1
sort = " ORDER BY State "
case 2
sort = " ORDER BY Code "
case 3
sort = " ORDER BY Occupation "
case 4
sort = " ORDER by PolicyNumber "
case else
sort = " ORDER by State "
end select

rState = Request.QueryString("state")
insName = Request.QueryString("ins")
occFilt = Request.QueryString("fo")
No... you're not getting it. Sort is request.querystring("sort"). If you
need the values of rState, insName and occFilt, then you will have to pass
those in the same querystring:

<a href="<%=request.servervariables("script_name")%>? sort=1&amp;rstate=<%
=rstate%>&amp;insName=<%=insName%>&amp;occFilt=<%= occFilt%>"> .

Please, for your sake and sanity, please take presenational attributes out
of your markup. Use CSS, it's a lot faster and easier to debug:

<style type="text/css">
th {font-family: tahoma, arial, sans-serif; color:#fff; font-size:80%}
</style>

If you use an external stylesheet, you can change ALL the td's and th's at
the same time! So you can use a red background and white text in February,
and green background in March, and NOT have to go into every single cell to
change it...Wow! How fashionable!

<td align=center width=50><font color=white size=2 face="Tahoma"><b>
<snip remaining markup>

Please advise


HTH

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 22 '05 #10

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

Similar topics

22
by: mike | last post by:
If I had a date in the format "01-Jan-05" it does not sort properly with my sort routine: function compareDate(a,b) { var date_a = new Date(a); var date_b = new Date(b); if (date_a < date_b)...
3
by: SilverWolf | last post by:
I need some help with sorting and shuffling array of strings. I can't seem to get qsort working, and I don't even know how to start to shuffle the array. Here is what I have for now: #include...
19
by: Owen T. Soroke | last post by:
Using VB.NET I have a ListView with several columns. Two columns contain integer values, while the remaining contain string values. I am confused as to how I would provide functionality to...
10
by: Sjaakie | last post by:
Hi, I'm, what it turns out to be, fooling around with 3-tier design. At several websites people get really enthusiastic about using custom dataobjects instead of datasets/-tables. While trying to...
6
by: =?Utf-8?B?RGFu?= | last post by:
I am reposting a question from about 3 weeks ago ("sorting capability"). I have an aspx page in which I get the data from a database dynamically, through C# code, by creating a dynamic table...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.