MKumar
MKumar

Reputation: 1524

unknown string on ASP .net page

In one of my aspx page I have a option to connect to facebook , twitter . When I load this page an unkown string like "adkadkskekkdkskdasf323dsk" is added before my html tag.

something like that

===========

abbfdabfdakadfkdafkdas
<html>
  <body>
  </body>
</html>

===========

This unknown string is visible on browser. It's look very odd.

Some one have any idea why it is happening.

Thanks in advance

Upvotes: 0

Views: 42

Answers (1)

Jemes
Jemes

Reputation: 2842

Since it's outside of the HTML, you probably have a Response.Write outputting it somewhere in your code. Do a search for "abbfdabfdakadfkdafkdas" :).

Upvotes: 4

Related Questions