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

Displaying asp table in different format not working

Hi,
I have the following Access DDL statment from which I generated a access
table:
CREATE TABLE TEST1
(ID COUNTER,
NAME TEXT(50),
STORAGESPACEASSIGNED TEXT(50)
)
INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("John Doe", "Kitchen Cabinet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Jane Doe", "Apartment's Attic");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Sam Hugh", "Bedroom Cabinet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Tom Jones", "Dining Room's Closet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Erica James", "None");

Now I would like to test a asp page using the above data. Here I would like
to display all the rows containing the fields "name" and
"StorageSpaceAssigned". I would like to display the same table twice but in
different format. The first one is a display only table of the above
specification while the latter table should show each of the cells as text
box (otherwise the display would be same as the first table).

The following is the code to generate the two similar tables in a asp page.
CODE:
<% 'The following is code for connecting to the database
myDSN="Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\test.mdb"

set CN=server.createobject("ADODB.Connection")
set rs=server.createobject("ADODB.Recordset")
set rstemp=server.createobject("ADODB.Recordset")

CN.Open myDSN

rstemp.ActiveConnection = CN
rs.ActiveConnection = CN
%>

<%

i = 0

sql01 = "SELECT * from tblTest "

rstemp.open sql01

Response.Write "<TABLE BORDER=1>"
Do while not rstemp.EOF
Response.Write "<TR><TD>" & rstemp("Name") & "&nbsp;</TD>"
Response.Write "<TD>" & rstemp("StorageSpaceAssigned") &
"&nbsp;</TD></TR>"
rstemp.MoveNext
Loop
Response.Write "</TABLE>"
rstemp.Close

'Response.End

rstemp.Open sql01


Do until rstemp.eof

i = i + 1
response.write "<TR>" & vbCRLF
strLink = "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" & i & "'
VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
response.write strLink & vbCRLF

strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=10
NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
response.write strLink & vbCRLF

strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=15
NAME='storagespacesssigned_" & i & "' VALUE='" &
rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
response.write strLink & vbCRLF
response.write strLink & vbCRLF

response.write "</TR>" & vbCRLF
rstemp.movenext

loop
rstemp.close
%>
However, the display of the second table is not coming in the same table
format as the first and rather is screwed up. I would like to get an input as
to why this display is getting screwed up. Thanks for any help.
Jan 17 '06 #1
4 1880

Jack wrote:
Hi,
I have the following Access DDL statment from which I generated a access
table:
CREATE TABLE TEST1
(ID COUNTER,
NAME TEXT(50),
STORAGESPACEASSIGNED TEXT(50)
)
INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("John Doe", "Kitchen Cabinet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Jane Doe", "Apartment's Attic");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Sam Hugh", "Bedroom Cabinet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Tom Jones", "Dining Room's Closet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Erica James", "None");

Now I would like to test a asp page using the above data. Here I would like
to display all the rows containing the fields "name" and
"StorageSpaceAssigned". I would like to display the same table twice but in
different format. The first one is a display only table of the above
specification while the latter table should show each of the cells as text
box (otherwise the display would be same as the first table).

The following is the code to generate the two similar tables in a asp page.
CODE:
<% 'The following is code for connecting to the database
myDSN="Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\test.mdb"

set CN=server.createobject("ADODB.Connection")
set rs=server.createobject("ADODB.Recordset")
set rstemp=server.createobject("ADODB.Recordset")

CN.Open myDSN

rstemp.ActiveConnection = CN
rs.ActiveConnection = CN
%>

<%

i = 0

sql01 = "SELECT * from tblTest "

rstemp.open sql01

Response.Write "<TABLE BORDER=1>"
Do while not rstemp.EOF
Response.Write "<TR><TD>" & rstemp("Name") & "&nbsp;</TD>"
Response.Write "<TD>" & rstemp("StorageSpaceAssigned") &
"&nbsp;</TD></TR>"
rstemp.MoveNext
Loop
Response.Write "</TABLE>"
rstemp.Close

'Response.End

rstemp.Open sql01


Do until rstemp.eof

i = i + 1
response.write "<TR>" & vbCRLF
strLink = "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" & i & "'
VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
response.write strLink & vbCRLF

strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=10
NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
response.write strLink & vbCRLF

strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=15
NAME='storagespacesssigned_" & i & "' VALUE='" &
rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
response.write strLink & vbCRLF
response.write strLink & vbCRLF

response.write "</TR>" & vbCRLF
rstemp.movenext

loop
rstemp.close
%>
However, the display of the second table is not coming in the same table
format as the first and rather is screwed up. I would like to get an input as
to why this display is getting screwed up. Thanks for any help.

It's difficult to see why you assign the text to a variable strLink
before response.writing it - especially as you didn't in the first
example. You should aim for consistency in your code. I guess partly
because of this, it looks like you duplicate some output just before
finishing the last </tr>. You response.write strLink twice (and you
haven't closed the table either)

Try this:

Do until rstemp.eof
i = i + 1
response.write "<TR>" & vbCRLF
response.write "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" &
i & "'
VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
response.write "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text'
SIZE=10
NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
response.write "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text'
SIZE=15
NAME='storagespacesssigned_" & i & "' VALUE='" &
rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
response.write "</TR>" & vbCRLF
rstemp.movenext
loop
response.write "</TABLE>" & vbcrlf
rstemp.close

Also, check the spelling of the name you gave the input for
StorageSpaceAssigned. There are 3 's' in there.

/P.

Jan 17 '06 #2
Thanks Paxton for the help. With your code change the two tables are
generating fine with only one difference i.e. the contents of the first table
shows the whole field for the spaceassigned field while the contents of the
spaceassigned field in the second table shows values which gets truncated
from the single quote all the aphabets in the right. Any idea why?

"Paxton" wrote:

Jack wrote:
Hi,
I have the following Access DDL statment from which I generated a access
table:
CREATE TABLE TEST1
(ID COUNTER,
NAME TEXT(50),
STORAGESPACEASSIGNED TEXT(50)
)
INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("John Doe", "Kitchen Cabinet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Jane Doe", "Apartment's Attic");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Sam Hugh", "Bedroom Cabinet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Tom Jones", "Dining Room's Closet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Erica James", "None");

Now I would like to test a asp page using the above data. Here I would like
to display all the rows containing the fields "name" and
"StorageSpaceAssigned". I would like to display the same table twice but in
different format. The first one is a display only table of the above
specification while the latter table should show each of the cells as text
box (otherwise the display would be same as the first table).

The following is the code to generate the two similar tables in a asp page.
CODE:
<% 'The following is code for connecting to the database
myDSN="Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\test.mdb"

set CN=server.createobject("ADODB.Connection")
set rs=server.createobject("ADODB.Recordset")
set rstemp=server.createobject("ADODB.Recordset")

CN.Open myDSN

rstemp.ActiveConnection = CN
rs.ActiveConnection = CN
%>

<%

i = 0

sql01 = "SELECT * from tblTest "

rstemp.open sql01

Response.Write "<TABLE BORDER=1>"
Do while not rstemp.EOF
Response.Write "<TR><TD>" & rstemp("Name") & "&nbsp;</TD>"
Response.Write "<TD>" & rstemp("StorageSpaceAssigned") &
"&nbsp;</TD></TR>"
rstemp.MoveNext
Loop
Response.Write "</TABLE>"
rstemp.Close

'Response.End

rstemp.Open sql01


Do until rstemp.eof

i = i + 1
response.write "<TR>" & vbCRLF
strLink = "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" & i & "'
VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
response.write strLink & vbCRLF

strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=10
NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
response.write strLink & vbCRLF

strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=15
NAME='storagespacesssigned_" & i & "' VALUE='" &
rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
response.write strLink & vbCRLF
response.write strLink & vbCRLF

response.write "</TR>" & vbCRLF
rstemp.movenext

loop
rstemp.close
%>
However, the display of the second table is not coming in the same table
format as the first and rather is screwed up. I would like to get an input as
to why this display is getting screwed up. Thanks for any help.

It's difficult to see why you assign the text to a variable strLink
before response.writing it - especially as you didn't in the first
example. You should aim for consistency in your code. I guess partly
because of this, it looks like you duplicate some output just before
finishing the last </tr>. You response.write strLink twice (and you
haven't closed the table either)

Try this:

Do until rstemp.eof
i = i + 1
response.write "<TR>" & vbCRLF
response.write "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" &
i & "'
VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
response.write "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text'
SIZE=10
NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
response.write "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text'
SIZE=15
NAME='storagespacesssigned_" & i & "' VALUE='" &
rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
response.write "</TR>" & vbCRLF
rstemp.movenext
loop
response.write "</TABLE>" & vbcrlf
rstemp.close

Also, check the spelling of the name you gave the input for
StorageSpaceAssigned. There are 3 's' in there.

/P.

Jan 17 '06 #3

Jack wrote:
Thanks Paxton for the help. With your code change the two tables are
generating fine with only one difference i.e. the contents of the first table
shows the whole field for the spaceassigned field while the contents of the
spaceassigned field in the second table shows values which gets truncated
from the single quote all the aphabets in the right. Any idea why?

"Paxton" wrote:

Jack wrote:
Hi,
I have the following Access DDL statment from which I generated a access
table:
CREATE TABLE TEST1
(ID COUNTER,
NAME TEXT(50),
STORAGESPACEASSIGNED TEXT(50)
)
INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("John Doe", "Kitchen Cabinet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Jane Doe", "Apartment's Attic");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Sam Hugh", "Bedroom Cabinet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Tom Jones", "Dining Room's Closet");

INSERT INTO test1 ( Name, StorageSpaceAssigned )
VALUES ("Erica James", "None");

Now I would like to test a asp page using the above data. Here I would like
to display all the rows containing the fields "name" and
"StorageSpaceAssigned". I would like to display the same table twice but in
different format. The first one is a display only table of the above
specification while the latter table should show each of the cells as text
box (otherwise the display would be same as the first table).

The following is the code to generate the two similar tables in a asp page.
CODE:
<% 'The following is code for connecting to the database
myDSN="Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\test.mdb"

set CN=server.createobject("ADODB.Connection")
set rs=server.createobject("ADODB.Recordset")
set rstemp=server.createobject("ADODB.Recordset")

CN.Open myDSN

rstemp.ActiveConnection = CN
rs.ActiveConnection = CN
%>

<%

i = 0

sql01 = "SELECT * from tblTest "

rstemp.open sql01

Response.Write "<TABLE BORDER=1>"
Do while not rstemp.EOF
Response.Write "<TR><TD>" & rstemp("Name") & "&nbsp;</TD>"
Response.Write "<TD>" & rstemp("StorageSpaceAssigned") &
"&nbsp;</TD></TR>"
rstemp.MoveNext
Loop
Response.Write "</TABLE>"
rstemp.Close

'Response.End

rstemp.Open sql01


Do until rstemp.eof

i = i + 1
response.write "<TR>" & vbCRLF
strLink = "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" & i & "'
VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
response.write strLink & vbCRLF

strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=10
NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
response.write strLink & vbCRLF

strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=15
NAME='storagespacesssigned_" & i & "' VALUE='" &
rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
response.write strLink & vbCRLF
response.write strLink & vbCRLF

response.write "</TR>" & vbCRLF
rstemp.movenext

loop
rstemp.close
%>
However, the display of the second table is not coming in the same table
format as the first and rather is screwed up. I would like to get an input as
to why this display is getting screwed up. Thanks for any help.

It's difficult to see why you assign the text to a variable strLink
before response.writing it - especially as you didn't in the first
example. You should aim for consistency in your code. I guess partly
because of this, it looks like you duplicate some output just before
finishing the last </tr>. You response.write strLink twice (and you
haven't closed the table either)

Try this:

Do until rstemp.eof
i = i + 1
response.write "<TR>" & vbCRLF
response.write "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" &
i & "'
VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
response.write "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text'
SIZE=10
NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
response.write "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text'
SIZE=15
NAME='storagespacesssigned_" & i & "' VALUE='" &
rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
response.write "</TR>" & vbCRLF
rstemp.movenext
loop
response.write "</TABLE>" & vbcrlf
rstemp.close

Also, check the spelling of the name you gave the input for
StorageSpaceAssigned. There are 3 's' in there.

/P.


You have a short memory. It was only a few days ago that you had
exactly the same problem:

http://groups.google.com/group/micro...fe9609ad72e7a2

/P.

Jan 17 '06 #4
Thanks Paxton for pointing that out. Actually with your and Bob Burrows
advise, I tried
two different ways to incorporate that in the code I had. I did not have any
success. I guess the code needs to be cleaned further. Here, with the
current clean
code it did work with the triple double quote concept incorporation. Thanks
a lot for all the help.
I appreciate it. Best regards.

"Paxton" wrote:

Jack wrote:
Thanks Paxton for the help. With your code change the two tables are
generating fine with only one difference i.e. the contents of the first table
shows the whole field for the spaceassigned field while the contents of the
spaceassigned field in the second table shows values which gets truncated
from the single quote all the aphabets in the right. Any idea why?

"Paxton" wrote:

Jack wrote:
> Hi,
> I have the following Access DDL statment from which I generated a access
> table:
> CREATE TABLE TEST1
> (ID COUNTER,
> NAME TEXT(50),
> STORAGESPACEASSIGNED TEXT(50)
> )
>
>
> INSERT INTO test1 ( Name, StorageSpaceAssigned )
> VALUES ("John Doe", "Kitchen Cabinet");
>
> INSERT INTO test1 ( Name, StorageSpaceAssigned )
> VALUES ("Jane Doe", "Apartment's Attic");
>
> INSERT INTO test1 ( Name, StorageSpaceAssigned )
> VALUES ("Sam Hugh", "Bedroom Cabinet");
>
> INSERT INTO test1 ( Name, StorageSpaceAssigned )
> VALUES ("Tom Jones", "Dining Room's Closet");
>
> INSERT INTO test1 ( Name, StorageSpaceAssigned )
> VALUES ("Erica James", "None");
>
> Now I would like to test a asp page using the above data. Here I would like
> to display all the rows containing the fields "name" and
> "StorageSpaceAssigned". I would like to display the same table twice but in
> different format. The first one is a display only table of the above
> specification while the latter table should show each of the cells as text
> box (otherwise the display would be same as the first table).
>
> The following is the code to generate the two similar tables in a asp page.
> CODE:
> <% 'The following is code for connecting to the database
> myDSN="Provider=Microsoft.Jet.OLEDB.4.0;" & _
> "Data Source=C:\test.mdb"
>
>
>
> set CN=server.createobject("ADODB.Connection")
> set rs=server.createobject("ADODB.Recordset")
> set rstemp=server.createobject("ADODB.Recordset")
>
> CN.Open myDSN
>
> rstemp.ActiveConnection = CN
> rs.ActiveConnection = CN
> %>
>
> <%
>
> i = 0
>
> sql01 = "SELECT * from tblTest "
>
> rstemp.open sql01
>
> Response.Write "<TABLE BORDER=1>"
> Do while not rstemp.EOF
> Response.Write "<TR><TD>" & rstemp("Name") & "&nbsp;</TD>"
> Response.Write "<TD>" & rstemp("StorageSpaceAssigned") &
> "&nbsp;</TD></TR>"
> rstemp.MoveNext
> Loop
> Response.Write "</TABLE>"
> rstemp.Close
>
> 'Response.End
>
> rstemp.Open sql01
>
>
>
>
> Do until rstemp.eof
>
> i = i + 1
> response.write "<TR>" & vbCRLF
> strLink = "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" & i & "'
> VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
> response.write strLink & vbCRLF
>
> strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=10
> NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
> response.write strLink & vbCRLF
>
> strLink = "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text' SIZE=15
> NAME='storagespacesssigned_" & i & "' VALUE='" &
> rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
> response.write strLink & vbCRLF
>
>
> response.write strLink & vbCRLF
>
> response.write "</TR>" & vbCRLF
>
>
> rstemp.movenext
>
> loop
> rstemp.close
> %>
>
>
> However, the display of the second table is not coming in the same table
> format as the first and rather is screwed up. I would like to get an input as
> to why this display is getting screwed up. Thanks for any help.
It's difficult to see why you assign the text to a variable strLink
before response.writing it - especially as you didn't in the first
example. You should aim for consistency in your code. I guess partly
because of this, it looks like you duplicate some output just before
finishing the last </tr>. You response.write strLink twice (and you
haven't closed the table either)

Try this:

Do until rstemp.eof
i = i + 1
response.write "<TR>" & vbCRLF
response.write "<TD WIDTH=1% ><INPUT TYPE='HIDDEN' NAME='ID_" &
i & "'
VALUE=" & rstemp("ID") & "></TD>" & vbCRLF
response.write "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text'
SIZE=10
NAME='name_" & i & "' VALUE='" & rstemp("Name") & "'></TD>" & vbCRLF
response.write "<TD WIDTH=10% ALIGN=LEFT><INPUT TYPE='text'
SIZE=15
NAME='storagespacesssigned_" & i & "' VALUE='" &
rstemp("StorageSpaceAssigned") & "'></TD>" & vbCRLF
response.write "</TR>" & vbCRLF
rstemp.movenext
loop
response.write "</TABLE>" & vbcrlf
rstemp.close

Also, check the spelling of the name you gave the input for
StorageSpaceAssigned. There are 3 's' in there.

/P.


You have a short memory. It was only a few days ago that you had
exactly the same problem:

http://groups.google.com/group/micro...fe9609ad72e7a2

/P.

Jan 17 '06 #5

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

Similar topics

8
by: Krzys! | last post by:
I'd like to create a table dynamicly. List of column in this table should be taken from select: "select distinct fiel from table " How to do it ? tnx in advance for help K.
13
by: Aladdin | last post by:
I have an MS Access form on which I have a listbox listing tables in that database. I want to be able to click on any of those tables and view its contents on the same form using subforms or any...
8
by: Jon Weston | last post by:
I'm setting up an Access2003 database with pictures. I put a bound ole picture ctrl on a form that's source is the table that contains the pictures and follow ALL the directions for embedding a...
4
by: KitKat | last post by:
Problem trying to figure this out, using a combo box selection I need to go to each folder, Cam 1, Cam 2, Cam 4, Cam 6, Cam 7,and Cam 8 and display each picture (from selection) from each folder...
4
by: John | last post by:
I am attempting to make a table data row editable once clicked on but I am not sure how to show the <tdwith two different states. I've got it to the point where the <tdis hidden then appears within...
1
by: littlealex | last post by:
IE6 not displaying text correctly - IE 7 & Firefox 3 are fine! Need some help with this as fairly new to CSS! In IE6 the text for the following page doesn't display properly - rather than being...
7
by: EManning | last post by:
I'm using A2003 connected to a SQL 2000 backend. This is not an adp. I have a table which I store 0 and -1 for 2 bit fields. I have a listbox on a form based on a query of this table. The...
7
by: RichB | last post by:
I am trying to get to grips with the asp.net ajaxcontrol toolkit, and am trying to add a tabbed control to the page. I have no problems within the aspx file, and can dynamically manipulate a...
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
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...
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
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,...

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.