3
Answers

Disabling Client Side (browser) caching & impact on AJAX

Gary King

Gary King

13y
2.6k
1
Hi,

So I guess that I have 2 questions....

1. I have been asked whether client side caching has been disabled in my asp.net webforms (which it hasn't) - what is the best way of going about this?

2. Some of my webforms use AJAX - would disabling caching have any impact on AJAX?

I am using .net framework 2.


Many Thanks
Gary
Answers (3)
0
Shehzad

Shehzad

NA 153 14k 9y
Hi Manas,
 
Challenge here is i don't want to cellspacing/padding zero and don't want to collapse border as
it will effect other rows in table.
 
Regards
 
Shehzad 
 
 
 
 
 
0
Shehzad

Shehzad

NA 153 14k 9y
Hi Arul,
 
As mentioned in my question i don't want to collapse border.
 
Regards
 
Shehzad 
 
 
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 9y
Try with below code:
 
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table cellspacing = "0" cellpadding="0" style="border: 2px solid green">
<tr>
<td>
ONE
</td>
<td>
ONE
</td>
<td>
ONE
</td>
</tr>
<tr style="background-color:yellow">
<td>
THREE
</td>
<td>
THREE
</td>
<td>
THREE
</td>
</tr>
<tr>
<td>
FOUR
</td>
<td>
FOUR
</td>
<td>
FOUR
</td>
</tr>
</table>
</body>
</html>
0
Arul R

Arul R

NA 1.3k 705 9y
Try this code
 
<style >
tbody tr td {
padding: 12px;
text-align: center;
}
</style>
 
<table style="border: 2px solid green; border-collapse: collapse;">
<tbody>
<tr>
<td>ONE </td>
<td>ONE </td>
<td>ONE </td>
</tr>
<tr>
<td>TWO </td>
<td>TWO </td>
<td>TWO </td>
</tr>
<tr style="background-color: yellow">
<td>THREE </td>
<td>THREE </td>
<td>THREE </td>
</tr>
<tr>
<td>FOUR </td>
<td>FOUR </td>
<td>FOUR </td>
</tr>
<tr>
<td>FIVE </td>
<td>FIVE </td>
<td>FIVE </td>
</tr>
</tbody>
</table>
 
Let me know for any thing more....
If your problem solved means kindly Accept my answer
 
 
 
0
Shehzad

Shehzad

NA 153 14k 9y
Hi Manas,
 
Below is the sample code  and image.
FYI I am also using Jquery in the application.
 
Regards
 
Shehzad 
 
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table cellspacing = "5" cellpadding="8" style="border: 2px solid green">
<tr>
<td>
ONE
</td>
<td>
ONE
</td>
<td>
ONE
</td>
</tr>
<tr>
<td>
TWO
</td>
<td>
TWO
</td>
<td>
TWO
</td>
</tr>
<tr style="background-color:yellow">
<td>
THREE
</td>
<td>
THREE
</td>
<td>
THREE
</td>
</tr>
<tr>
<td>
FOUR
</td>
<td>
FOUR
</td>
<td>
FOUR
</td>
</tr>
<tr>
<td>
FIVE
</td>
<td>
FIVE
</td>
<td>
FIVE
</td>
</tr>
</table>
</body>
</html>
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 9y
Can you share the code how are trying to set Background color to yellow.
0
Rajeesh Menoth

Rajeesh Menoth

NA 24.7k 629.5k 9y
Hi,
 
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr bgcolor="#FF0000">
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<p>The bgcolor attribute is not supported in HTML5. Use CSS instead.</p>
</body>
</html>
Reference : 
 
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_tr_bgcolor 
0
Arul R

Arul R

NA 1.3k 705 9y
Try this code 
 
<table>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="First Name"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
<tr style="background-color: yellow">
<td>
<asp:Label ID="Label2" runat="server" Text="Last Name"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</td>
</tr>
</table>
 
Let me know for any thing more....
If your problem solved means kindly Accept my answer