Author |
|
Tanveer Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 16 May 2004 at 5:26am | IP Logged
|
|
|
Hi There,
How can we remove Show header/Hide Header
in view.asp ?
Regards,
Tanveer
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 17 May 2004 at 8:53am | IP Logged
|
|
|
In "functions_view.inc.asp" file please replace these lines (they are lines from #93 to #102):
--------------------------------------------------------
<tr>
<td class="wm_message_data"><%=strSubject %>: </td>
<td width="68%" class="wm_message_value">
<%=Replace(Replace(Msg.Subject,"<","<"),">", ">")%>
</td>
<td align="center" class="wm_message_data">
<% If mode2 = "all_header" Then %>
<a
href = "view.asp?page=<%=page %>&id_letter=<%=id_letter %>&mode2=standard_header<%=pm_mode %>"
class = "wm_list_item_link"><%=strStandardHeader %></a>
</td>
<% Else %>
<a
href = "view.asp?page=<%=page %>&id_letter=<%=id_letter %>&mode2=all_header<%=pm_mode %>"
class = "wm_list_item_link"><%=strAllHeader %></a>
</td>
<% End If %>
</tr>
-------------------------------------------------------
with these lines:
-------------------------------------------------------
<tr>
<td class="wm_message_data"><%=strSubject %>: </td>
<td colspan="2" width="68%" class="wm_message_value">
<%=Replace(Replace(Msg.Subject, "<", "<"), ">", ">") %>
</td>
</tr>
-------------------------------------------------------
Alex
|
Back to Top |
|
|