| Author: bijesh 11 Jul 2006 | Member Level: Bronze | Rating: Points: 2 |
Html control run at the client side where server control run at the server
|
| Author: HimaBindu Veeramachaneni 11 Jul 2006 | Member Level: Diamond | Rating: Points: 2 |
when u make html control id and runat = server it acts as similer to as server control
|
| Author: krishna 12 Jul 2006 | Member Level: Gold | Rating: Points: 2 |
chk this url:
http://samples.gotdotnet.com/quickstart/aspplus/
|
| Author: Mahendrakar R Kumar 15 Oct 2008 | Member Level: Gold | Rating: Points: 3 |
Html is a client side language ,php ,.net,ajax etc are server side languages u can learn more about all @ http://www.w3schools.com get,post,runat=server are some that make server side languages to post and get objects.
Thanks & Regards, Mahendrakar R Kumar.
|
| Author: ankur jain 20 Oct 2008 | Member Level: Silver | Rating: Points: 5 |
Html controls are that control which are running at client side. e.g of controls like input, a- anchor tag, table, frame, button etc. from html you can make static side. You can check, validate or puts events for these controls using javascript. Server controls are controls that are acess by server side. You can code for these controls from code behind file in.net. You can use html controls as server control by putting runnat="server" and can be acessed from code behind file.
|
| Author: ankur jain 20 Oct 2008 | Member Level: Silver | Rating: Points: 6 |
Hi Kitty, You can use colspan as shown for last td(column) for each row as follows <table border=1> <tr> <td> aa </td> <td> aa </td> <td colspan="2"> ff </td> </tr>
<tr> <td> rr </td> <td> kk </td> <td colspan="2"> ii </td> </tr>
<tr> <td> gg </td> <td> hh </td> <td> kk </td> <td>ll</td> </tr> </table>
|