Generate pdf using iTextSharp for different languages - c#

I have tried different options, but it did not work. The code generated pdf for English but does not work for other languages.
using (var ms = new MemoryStream())
{
// Create an iTextSharp Document which is an abstraction of a PDF but **NOT** a PDF
var doc = new Document();
{
// Create a writer that's bound to our PDF abstraction and our stream
var writer = PdfWriter.GetInstance(doc, ms);
{
// Open the document for writing
doc.Open();
string finalHtml = string.Empty;
// Read your html by database or file here and store it into finalHtml e.g. a string
// XMLWorker also reads from a TextReader and not directly from a string
using (var srHtml = new StringReader(sHtmlText))
{
// Parse the HTML
iTextSharp.tool.xml.XMLWorkerHelper.GetInstance().ParseXHtml(writer, doc, srHtml);
}
doc.Close();
}
}
// After all of the PDF "stuff" above is done and closed but **before** we
// close the MemoryStream, grab all of the active bytes from the stream
return new PDFFormFillerResult(ms, PDFFormFillerResultType.Success, string.Empty);
//bytes = ms.ToArray();
}

Well we had to buy another 3rd party tool which understands UNICODE characters.

I was able to create multi language PDF in English and Japanese.
The prerequisite for achieving this
1. To have appropriate Font which supports the languages you are planning to use.
2. Implement IFontProvider interface from iTextSharp and register the multi language font you will be using.
If you follow these 2 steps, you can create multi language PDF.
Code Sample:
public class smartUIFontProvider: IFontProvider
{
public Font GetFont(string fontname, string encoding, bool embedded, float size, int style, BaseColor color)
{
string myFont = #"C:\Tasks\Projects\SampleProject\iTextDemo_PDF\SmartFontUI\SmartFontUI.otf";
iTextSharp.text.pdf.BaseFont bfR;
bfR = iTextSharp.text.pdf.BaseFont.CreateFont(myFont,
iTextSharp.text.pdf.BaseFont.IDENTITY_H,
iTextSharp.text.pdf.BaseFont.EMBEDDED);
iTextSharp.text.BaseColor clrBlack =
new iTextSharp.text.BaseColor(0, 0, 0);
iTextSharp.text.Font fntHead =
new iTextSharp.text.Font(bfR, 12, iTextSharp.text.Font.NORMAL, clrBlack);
return fntHead;
}
public bool IsRegistered(string fontname)
{
return true;
}
}
static void Main (string[] args)
{
// step 1
Document document = new Document();
Byte[] bytes;
var fileName = "resources\\test_" + System.DateTime.Now.ToString("ddMMyyyy_hhmm") + ".pdf";
var testFile = Path.Combine(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location), fileName);
MemoryStream ms = new MemoryStream();
// step 2
using (var writer = PdfWriter.GetInstance(document, ms))
{
document.Open();
String example_html = #" <!DOCTYPE html> <html> <head> </head> <body> <h1>Change of Control Application</h1> <br/> <p>Please fill out this form if there are updates to your current organization and its relationship Company has on file with the legal binding entity. Company will review the information and may ask you to provide further information before Company agrees to the requested changes.</p> <br/> <table class='bodyText1LIC general' style='width:700px' id='tblInputForm' > <tr> <td class='bodyText1LIC' colspan='4'> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3>Licensee Information</h3> </td> </tr> <tr> <td class='bodyText1SerNo'>1.</td> <td class='bodyText1LIC'>Licensee Name </td> <td valign='top' class='txtboxtd'> 字詰めなどの調整をおすすめします </td> <td> </td> </tr> <tr> <td class='bodyText1LIC' colspan='4'> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3>Licensee Primary Contact Information </h3> </td> </tr> <tr> <td class='bodyText1SerNo'>2.</td> <td class='bodyText1LIC'>Name</td> <td class='txtboxtd'> めなどの調整 </td> <td> </td> </tr> <tr> <td class='bodyText1SerNo'>3.</td> <td class='bodyText1LIC'>Job Title</td> <td class='txtboxtd'> T</td> <td> </td> </tr> <tr> <td class='bodyText1SerNo'>4.</td> <td class='bodyText1LIC'>Mailing Address</td> <td class='txtboxtd'>めなどの調整</td> <td> </td> </tr> <tr> <td class='bodyText1SerNo'>5.</td> <td class='bodyText1LIC'>Telephone Number </td> <td class='txtboxtd'>T</td> <td> </td> </tr> <tr> <td class='bodyText1SerNo'>6.</td> <td class='bodyText1LIC'>Email Address </td> <td class='txtboxtd'>abc#test.com</td> <td> </td> </tr> <tr> <td class='bodyText1LIC' colspan='4'> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3> Organizational Structure</h3> </td> </tr> <tr> <td class='bodyText1SerNo'> 7.</td> <td class='bodyText1LIC' colspan='3'> Will your Company's Name Change? </td> </tr> <tr> <td></td> <td colspan='3'> Yes</td> </tr> <tr class='nc' id='TrCompanyName'> <td></td> <td class='bodyText1LIC' colspan='2'> a) New company name </td> <td class='txtboxtd'> DSFDASFASDFDSA</td> </tr> <tr class='nc' id='TrEffectiveDate'> <td></td> <td class='bodyText1LIC' colspan='2'> b) Effective Date Company change will take place </td> <td class='txtboxtd'> 04/20/2017</td> </tr> <tr> <td class='bodyText1SerNo'>8.</td> <td class='bodyText1LIC' colspan='3'>Has your Company been Reincorporated or under gone an Internal Reorganization? </td> </tr> <tr> <td></td> <td colspan='3'> No</td> </tr> <tr> <td class='bodyText1LIC' colspan='4'> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3>Assets / Stocks to be Acquired </h3> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3>Assets to be Acquired</h3> </td> </tr> <tr> <td class='bodyText1SerNo'>9.</td> <td class='bodyText1LIC' colspan='3'>Will some or all of your Company’s Assets be Acquired? </td> </tr> <tr> <td></td> <td colspan='3'> No</td> </tr> <tr> <td class='bodyText1LIC' colspan='4'> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3>Stocks to be Acquired </h3> </td> </tr> <tr> <td class='bodyText1SerNo'>10.</td> <td class='bodyText1LIC' colspan='3'>Will some or all of your Company’s Assets be Acquired? </td> </tr> <tr> <td></td> <td colspan='3'> No</td> </tr> <tr> <td class='bodyText1LIC' colspan='4'> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3> Effects of Change to Licensee</h3> </td> </tr> <tr> <td class='bodyText1SerNo'> 11.</td> <td class='bodyText1LIC' colspan='3'> Please indicate which Company is the Surviving Legal Entity? </td> </tr> <tr> <td></td> <td class='txtboxtd' colspan='3'> T</td> </tr> <tr> <td class='bodyText1SerNo'>12.</td> <td class='bodyText1LIC' colspan='3'>Please provide the Company that will be the Licensee? </td> </tr> <tr> <td class='txtboxtd'> </td> <td colspan='3'> T</td> </tr> <tr> <td valign='top' class='bodyText1SerNo'>13.</td> <td class='bodyText1LIC' colspan='3'>Will any companies exist to operate as separate Subsidiaries or Affiliates ? </td> </tr> <tr> <td></td> <td colspan='3'> No</td> </tr> <tr> <td class='bodyText1LIC' colspan='4'> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3>Existing Agreements</h3> </td> </tr> <tr> <td class='bodyText1SerNo'>14.</td> <td class='bodyText1LIC' colspan='3'>Please identify if any Licenses that will be affected by the Changes described above </td> </tr> <tr> <td></td> <td colspan='3'> No</td> </tr> <tr> <td class='bodyText1LIC' colspan='4'> </td> </tr> <tr> <td class='tableBody1' colspan='4'> <h3>Corporate Documentation</h3> </td> </tr> <tr> <td valign='top' class='bodyText1SerNo'>15.</td> <td class='bodyText1LIC' colspan='3'>Please Select from 1 of the 2 options listed below</td> </tr> <tr> <td></td> <td colspan='3'> Please Describe the Full Legal Structure of this Organization Change in relation to Licensing.</td> </tr> <tr> <td></td> <td colspan='3'> ASDFSDAFDSAFADSFDASF </td> </tr> </table> </body> </html>";
String example_css = #"html { font-family: SmartFontUI; font-size: 14px; } h1, h2, strong { font-family: SmartFontUI; font-weight: bold; display: inline; } h1 { font-size: 18pt; } .main { font-size: 12pt; color: black; font-family: SmartFontUI, Arial, Sans-Serif; background-color: white; text-align: left; line-height: 1.4em; margin: 2%; } .mainDesc { width: 100%; margin: 10px 0; } span { float: left; display: block; width: 100%; margin-bottom: 5px; } .bodyText1SerNo { width: 2em; } .bodyText1LIC { width: 22em; } .txtboxspan { width: 32em; } .tableBody1 { width: 100%; } .nc { margin-left: 100px; } .subtitle { font-size: 16pt; }";
FontFactory.Register(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Fonts), "SmartFontUI.otf"), "SmartFontUI");
XMLWorkerHelper worker = XMLWorkerHelper.GetInstance();
MemoryStream msHtml = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(example_html));
MemoryStream msCss = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(example_css));
smartUIFontProvider smartUIFontObj = new smartUIFontProvider();
worker.ParseXHtml(writer, document, msHtml, msCss, System.Text.Encoding.UTF8, smartUIFontObj);
// step 5
document.Close();
}
bytes = ms.ToArray();
System.IO.File.WriteAllBytes(testFile, bytes);
}

Related

iText 7 pdfHTML extension doesn't implement all of my CSS when converting my html to pdf in my C# utility

I have the following HTML:
<html>
<head>
<style>
.styled-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
width: 100%;
}
.styled-table thead tr {
background-color: #004298;
color: #ffffff;
text-align: left;
}
.styled-table th,
.styled-table td {
padding: 12px 15px;
}
.styled-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.styled-table tbody tr:last-of-type {
border-bottom: 2px solid #004298;
}
.styled-table tbody tr.active-row {
font-weight: bold;
color: #004298;
}
</style>
</head>
<body>
<table class='styled-table'>
<thead>
<tr class='active-row'>
<th>Allowed access control list</th>
</tr>
</thead>
<tr class='active-row'>
<td>
<table class='styled-table'>
<tr>
<td>172.16.40.250 - Blue Coat SG-VA Series>show allowed-access</td>
</tr>
<tr>
<td>192.168.1.69 255.255.255.255</td>
</tr>
<tr>
<td>192.168.1.71 255.255.255.255</td>
</tr>
</table>
</td>
</tr>
</table>
<p>
<table class='styled-table'>
<thead>
<tr class='active-row'>
<th>Proxy Client and Unified Agent settings</th>
</tr>
</thead>
<tr class='active-row'>
<td>
<table class='styled-table'>
<tr>
<td colspan='2'>172.16.40.250 - Blue Coat SG-VA Series>show clients</td>
</tr>
<tr>
<td colspan='2'>Client Manager configuration</td>
</tr>
<tr>
<td><strong> Activation </strong></td>
<td> disabled</td>
</tr>
<tr>
<td><strong> Host </strong></td>
<td> from client request</td>
</tr>
<tr>
<td><strong> Install Port </strong></td>
<td> 8084</td>
</tr>
<tr>
<td><strong> Keyring </strong></td>
<td> default</td>
</tr>
<tr>
<td><strong> Manager Version </strong></td>
<td> 1</td>
</tr>
<tr>
<td><strong> PxC Software Upgrade URL </strong></td>
<td> </td>
</tr>
<tr>
<td><strong> PxC Archive Version </strong></td>
<td> 3.4.3.2</td>
</tr>
<tr>
<td><strong> PxC MSI file size </strong></td>
<td> 10951680 bytes</td>
</tr>
<tr>
<td><strong> PxC BSX file size </strong></td>
<td> 9668837 bytes</td>
</tr>
<tr>
<td><strong> UA Software Upgrade URL </strong></td>
<td> </td>
</tr>
<tr>
<td><strong> UA Archive Version </strong></td>
<td> 4.7.1.188819</td>
</tr>
<tr>
<td><strong> UA32 MSI file size </strong></td>
<td> 4939776 bytes</td>
</tr>
<tr>
<td><strong> UA64 MSI file size </strong></td>
<td> 6496256 bytes</td>
</tr>
<tr>
<td><strong> UA OSX ZIP file size </strong></td>
<td> 11663933 bytes</td>
</tr>
<tr>
<td><strong> Update Interval </strong></td>
<td> 120 minutes</td>
</tr>
<tr>
<td><strong> Uninstall Password </strong></td>
<td> Disabled</td>
</tr>
<tr>
<td colspan='2'>Client Manager Web-filter configuration</td>
</tr>
<tr>
<td><strong> Activation </strong></td>
<td> disabled</td>
</tr>
<tr>
<td><strong> Safe Search </strong></td>
<td> disabled</td>
</tr>
<tr>
<td><strong> HTTPS Filtering </strong></td>
<td> enabled</td>
</tr>
<tr>
<td><strong> Default Action </strong></td>
<td> allow</td>
</tr>
<tr>
<td><strong> Failure Mode </strong></td>
<td> closed</td>
</tr>
<tr>
<td colspan='2'> Log Settings </td>
</tr>
<tr>
<td><strong> Activation </strong></td>
<td> enabled</td>
</tr>
<tr>
<td><strong> Log </strong></td>
<td> all</td>
</tr>
<tr>
<td><strong> Early upload </strong></td>
<td> 50 megabytes</td>
</tr>
<tr>
<td><strong> Periodic upload </strong></td>
<td> 24 hrs 0 minutes</td>
</tr>
<tr>
<td colspan='2'> Primary FTP Server </td>
</tr>
<tr>
<td><strong> Host </strong></td>
<td> </td>
</tr>
<tr>
<td><strong> Port </strong></td>
<td> 21</td>
</tr>
<tr>
<td><strong> Path </strong></td>
<td> </td>
</tr>
<tr>
<td colspan='2'> Alternate FTP Server </td>
</tr>
<tr>
<td><strong> Host </strong></td>
<td> </td>
</tr>
<tr>
<td><strong> Port </strong></td>
<td> 21</td>
</tr>
<tr>
<td><strong> Path </strong></td>
<td> </td>
</tr>
<tr>
<td colspan='2'> List of Selected Categories and Actions</td>
</tr>
<tr>
<td colspan='2'>Locations</td>
</tr>
<tr>
<td><strong> Webfilter </strong></td>
<td> Enabled</td>
</tr>
<tr>
<td colspan='2'> Locations List</td>
</tr>
</table>
</td>
</tr>
</table>
<p>
</body>
</html>
I call the following method in my C# code:
public void createPdf(string html, string dest)
{
HtmlConverter.ConvertToPdf(html, new FileStream(dest, FileMode.Create));
}
The converted PDF ignores most of the CSS directives. I tried this on iText's online converter and get the same results.
The HTML looks like this:
The converted PDF looks like this:
Any ideas why this is happening and what I can do to fix? Thanks!

C# Get all the id of the html tag and set inner text for <td></td> tag

I have string html, I want to get all id name of tag in string html.
get string html in file text:
<tr>
<td class="X8">
</td>
<td colspan="6" class="X9"></td>
<td colspan="4" class="X12" id="closedate">
</td>
<td colspan="6" class="X9"></td>
<td colspan="4" class="X12" id="startdate">
</td>
<td class="X8">
</td>
<td class="X8" colspan="3">
</td>
<td class="X8">
</td>
<td colspan="9" class="X9"></td>
<td colspan="6" class="X15" id="totalpayment"></td>
<td class="X8">
</td>
<td class="X8">
</td>
</tr>
<tr>
<td class="X17">
</td>
<td class="X17" colspan="8">
</td>
<td class="X17" colspan="33">
</td>
<td class="X17">
</td>
</tr>
<tr>
<td class="X17">
</td>
<td class="X17" colspan="8">
<td class="X17" colspan="16">
</td>
<td class="X17">
</td>
<td colspan="9" class="X20"></td>
<td colspan="6" class="X23" id="approvaldate"></td>
<td class="X17">
</td>
<td class="X17">
</td>
</tr>
expected results:
closedate, startdate,totalpayment, approvaldate.
Then I want to set inner text for id name tag
(Ex:<td colspan="6" class="X23" id="approvaldate">2018/07/18</td>)
Using c#.Help me, please. Thanks a lot.
What I am understood from your question is you need the id of all in string simple Example Created for you
<form id="form1" runat="server">
<input id="Name" type="text" name="Full Name" runat="server" />
<input id="Email" type="text" name="Email Address" runat="server" />
<input id="Phone" type="text" name="Phone Number" runat="server" />
</form>
foreach (var control in Page.Form.Controls)
{
if (control is HtmlInputControl)
{
var htmlInputControl = control as HtmlInputControl;
string controlName = htmlInputControl.Name;
string controlId = htmlInputControl.ID;
}
}
Another Approach:-
HtmlElement table = testWebBrowser.Document.GetElementById("TableID");
if (table != null)
{
foreach (HtmlElement row in table.GetElementsByTagName("TR"))
{
// ...
}
}

How to read image from Hosted Server and display in Excel file

I'm Developing a website in MVC Razor view. There I have provided option of downloading the Excel file. And its is working fine. I just need to attach an image at the top of excel file. I have published in localhost the image is showing, whereas from other system image not showing only content is showing, below is my code.
<table>
<tr>
<td></td>
<td height="50">
<img src="#Context.Server.MapPath("~/Images/company_logo1.png")" />
</td>
</tr>
<tr>
<td></td>
<td align="center">
<h3>Mini Statement</h3>
</td>
</tr>
<tr>
<td></td>
<td>
<table cellspacing="1">
#foreach (JProperty s1 in Model.DownloadData.SelectToken("MiniAccDet"))
{
<tr>
<td colspan="2">#s1.Name</td>
<td style="mso-number-format:#myVariable;" font-weight:bold;" align="left">#s1.Value.ToString()</td>
</tr>
}
#foreach (JProperty s2 in Model.DownloadData.SelectToken("MiniStmtBal"))
{
<tr>
<td colspan="2">#s2.Name</td>
<td style="font-weight:bold;" align="left">#s2.Value</td>
</tr>
}
</table>
</td>
</tr>
</table>

Xpath select all tr without table with id=x

Hello i need to select all tr,but in some tr i have a table with id=WHITE_BANKTABLE.
I need to select only Tr that dont't have this table with id.
My html
<table id=mytable_body>
<TR id=TR_ROW_BANKTABLE class=TR_ROW_BANKTABLE style="BACKGROUND-COLOR: #f6f8fa" align=right bgColor=#f6f8fa>
<TD noWrap align=right w_idth="190"> </TD>
<TD align=right>010073/15922</TD>
</TR>
> **//This Tr with TABLE id=WHITE_BANKTABLE i don't need**
<TR>
<TD colSpan=8 align=center>
<TABLE id=WHITE_BANKTABLE cellSpacing=0 borderColorDark=#edf0f5 cellPadding=3 width="100%" bgColor=white borderColorLight=#edf0f5 border=1 isWhiteTable="Y">
<TBODY>
<TR class=TR_BANKTABLE align=right vAlign=top>
<TD> sdfsd </TD>
<TD>sdfs</TD>
</TR>
</TBODY>
</TABLE>
</TD>
</TR>
<TR id=TR_ROW_BANKTABLE class=TR_ROW_BANKTABLE style="BACKGROUND-COLOR: #f6f8fa" align=right bgColor=#f6f8fa>
<TD noWrap align=right w_idth="190"> </TD>
<TD align=right>010073/15922</TD>
</TR>
</table>
Thanx.
Assuming the above is correctly formatted as XML (insert missing double quotes):
var q =
xml.XPathSelectElements(#"/tr[not(descendant::table[#id = 'WHITE_BANKTABLE'])]");

How can I give cellpadding,cellspacing of a table in asp.net

I want to set width, height, cllpadding and cellspacing and valign of a table but I did not find these attributes in asp.Net. (But these tags are available in PHP Dreamweaver) Guide me how can I set these four for a table in asp.Net. I have visual studio 2012.
<table width="1332" height="231" border="1" >
<tr>
<td colspan="2" rowspan="2">Region</td>
<td height="21" colspan="3"><span id="result_box" lang="ar" xml:lang="ar">المجموع العام</span></td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2">مسندم</td>
<td colspan="2" rowspan="2"><span id="result_box2" lang="ar" xml:lang="ar">منطقة</span></td>
</tr>
<tr>
<td height="23" colspan="3">Grand Total</td>
<td colspan="2"> </td>
<td colspan="2">Musandam</td>
<td colspan="2">Al-wusta</td>
<td colspan="2">Alburaimi</td>
<td colspan="2">Al-Dhahira</td>
<td colspan="2">Dohfar</td>
<td colspan="2">Al-dhakhila</td>
<td colspan="2">Al-sharqiya(n)</td>
<td colspan="2">Al-sharqiyah</td>
<td colspan="2">Albatiniah(s)</td>
<td colspan="2">Al-Albatinah</td>
<td colspan="2">Muscat</td>
</tr>
<tr>
<td colspan="2">Gender</td>
<td width="77"><span id="result_box8" lang="ar" xml:lang="ar">مجموع</span></td>
<td width="24">١</td>
<td width="24">ذ</td>
<td width="10">١</td>
<td width="14">ذ</td>
<td width="45">١</td>
<td width="16">ذ</td>
<td width="11">١</td>
<td width="34">ذ</td>
<td width="13">١</td>
<td width="39">ذ</td>
<td width="25">١</td>
<td width="32">ذ</td>
<td width="16">١</td>
<td width="20">ذ</td>
<td width="28">١</td>
<td width="32">ذ</td>
<td width="28">١</td>
<td width="49">ذ</td>
<td width="42">١</td>
<td width="25">ذ</td>
<td width="26">١</td>
<td width="44">ذ</td>
<td width="38">١</td>
<td width="29">ذ</td>
<td width="22">١</td>
<td width="17">ذ</td>
<td colspan="2"><span id="result_box3" lang="ar" xml:lang="ar">جنس</span></td>
</tr>
<tr>
<td colspan="2">Specialization</td>
<td>Total</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td>F</td>
<td>M</td>
<td colspan="2"><span id="result_box4" lang="ar" xml:lang="ar">تخصص</span></td>
</tr>
<tr>
<td width="68" rowspan="4" valign="top">Foundation</td>
<td width="152" valign="top">Engnieering</td>
<td height="23">120</td>
<td>48</td>
<td>72</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td width="105" valign="top">الهندسة</td>
<td width="37" rowspan="4" valign="top">مؤسسة</td>
</tr>
<tr>
<td valign="top">Information Technology</td>
<td>213</td>
<td>147</td>
<td>66</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td valign="top">تكنولوجيا المعلومات</td>
</tr>
<tr>
<td rowspan="2" valign="top">Total</td>
<td rowspan="2">313</td>
<td height="28">195</td>
<td>138</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>2</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>2</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>2</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>2</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>2</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td rowspan="2" valign="top">إجمالي</td>
</tr>
<tr>
<td height="26" colspan="2">313</td>
<td colspan="2">3</td>
<td colspan="2">0</td>
<td colspan="2">4</td>
<td colspan="2">0</td>
<td colspan="2">4</td>
<td colspan="2">0</td>
<td colspan="2">4</td>
<td colspan="2">0</td>
<td colspan="2">4</td>
<td colspan="2">0</td>
<td colspan="2">4</td>
<td colspan="2">0</td>
</tr>
</table>
Height width valign top is also not available in visual studio
If you do like to code it using only HTML, this is done like this :
<table cellspacing="10px" cellpadding="10px" style = "height = 200px;width:200px;">
Note : cellspacing and cellpadding is obsolete, I think in HTML5,But if you give it a try, its still working(but maybe your editor will give you warning message on that like on Eclipse IDE). And adding css style in your HTML tag is dirty and hard to maintain when it comes to redesigning your page.
Using css :
table { border-spacing: 5px;/*use to work like cellspacing */
width : 200px;
height:200px;
}
th, td { padding: 5px; } /*use to work like cellpadding */
Add one class for your table in Visual Studio and apply it using the class in CSS like below. For example i am going to assign the class mycuststyle.
table.mycuststyle
{
border-spacing:3px;
width:400px;
height:400px;
}
table.mycuststyle td, table.mycuststyle th
{
padding:10px;
vertical-align:middle;
text-align:left;
}
<html>
<head>
<title>Cell Spacing & Cell Padding</title>
</head>
<Body>
<table border="border">
<tr>
<th colspan="2">Cuisine</th>
</tr>
<tr>
<th>Non Veg</th>
<th>Veg</th>
</tr>
<tr>
<td>
<table border="border">
<tr>
<th> </th>
<th>Fish</th>
<th>Chicken</th>
</tr>
<tr>
<th>Cost</th>
<td>450 </td>
<td>550</td>
</tr>
</table>
<table border="border">
<tr>
<th>Idli</th>
<th>Dosa</th>
</tr>
<tr>
<td>35</td>
<td>40</td>
</tr>
</table>
</td>
</tr>
</table>
</Body>
</html>

Categories