Friday 15 April 2011

Add Image Coloumn to the Crystal Report

Note: While Using with XSD...

#1. Add new column to xsd with name : image_stream.

#2.Set Column Data type is System.Byte[].

#3.Image Field is ready in Crystal Report Field Explorer.

#4.Drag and drop that field to Crystal Report desgine page.

Thursday 14 April 2011

If Condition In HTML Code

Q# How to Use "IF" Condition in HTML Code

Solution:

  <table id="Hide">
      <tr>
            <td valign="bottom">
                     <% if (Condition){ %>
                                Expression
                       <% }  %>
              </td>
       </tr>
  </table>