How can you have different number of cells for each row of a
table in HTML?
Answer Posted / rekha
by creating a table
<table>
<tr>
<td>enter name</td>
</tr>
<tr>
<td>Ur mail id</td>
</tr>
</table
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
How to capture a runtime error in vbscript?
What is vbscript procedures?
Explain the extension .hta?
How will you get a random number between 0 and 1 in vbscript?
What are class events?
Could Anybody Please tell me What is the script for Find 3rd Largest element in the Array without using a SORT function int Find(int arr[], int size); Thanks in Advance..
How to make professional test report using vbscript code in UFT, which gives us complete analysis of the test.
Mention characteristics of sub procedures?
What are the 2 ways in which a variable can be declared in the vbscript language?
What is the purpose of regexp object in vbscript?
Explain about vb script?
write a function to read the items from combobox of Flight reservation & save in excel (QTP)??
Explain about constants in vb script?
who will create the object?
I have an excel sheet with multiple ID's in a column. Now i need fetch those ID's in an application and check whether if it already exist in the DB. If not then i have to go with the process of inserting them in the DB. If it exists then i need to skip that ID and move to the next ID and check the same and proceed. How can i do that with for loop and if condition?