Link to home
Start Free TrialLog in
Avatar of kasperEH
kasperEHFlag for Denmark

asked on

How can I remove mysterious "v" on my web page?

On a web page, in my solution, there is an extra "v", that I can't seem to find in the source code. It's an ASP.NET page (SharePoint visual web part). When I view the page in a browser and choose View source I see this:
<tr>
        <td class="style5">
            &nbsp;</td>
        <td bgcolor="#F5F5F5" class="style6">
            <span id="ctl00_m_g_b503369d_31fd_47d1_b2c7_a677130130bb_ctl00_DecisionADTLabel"></span>
        </td>
    </tr>
    v
    <tr>
        <td class="style5">
            &nbsp;</td>
        <td bgcolor="#F5F5F5" class="style6">
            <span id="ctl00_m_g_b503369d_31fd_47d1_b2c7_a677130130bb_ctl00_DecisionMGECreditLabel"></span>
        </td>
    </tr>

Open in new window

You can see the v between the two tr tags in the middle. But in my code behind, it is not there:
  <tr>
        <td class="style5">
            &nbsp;</td>
        <td bgcolor="#F5F5F5" class="style6">
            <asp:Label ID="DecisionADTLabel" runat="server"></asp:Label>
        </td>
    </tr>
    <tr>
        <td class="style5">
            &nbsp;</td>
        <td bgcolor="#F5F5F5" class="style6">
            <asp:Label ID="DecisionMGECreditLabel" runat="server"></asp:Label>
        </td>
    </tr>

Open in new window

It looks very strange with this extra "v" by itself. How can I remove it?
Avatar of ZeropointNRG
ZeropointNRG
Flag of Australia image

Replace the file with the code with no "V" in it.
Avatar of kasperEH

ASKER

The problem is that I can only edit the source code (code behind) and the "V" is not there.
How are you viewing the page with the "v" showing? Do you have a link is this live?
Hi  

the "V" is maybe displayed because of  JavaScript code so check any JS code or any external code that may display this.
Provide an actual URL for testing.
@David Favor, unfortunately this is on an intranet site with no public access
@lenamti, thank you for your comment, I don't see any JavaScript that would affect the HTML right now
Maybe it would be possible to have some JavaScript that looks for a single "v" in the final HTML and removes it?
ASKER CERTIFIED SOLUTION
Avatar of ZeropointNRG
ZeropointNRG
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you all for your comments, it works now
You're welcome!

Glad you got your page working!