Hi @M Noreen ,
Thanks for @Alan Waiss raising a potential workaround which you also found here.
protected override void Render( HtmlTextWriter writer )
{
if( Page.IsPostBack )
{
writer = new HtmlTextWriter_Fix( writer.InnerWriter );
}
base.Render( writer );
}
class HtmlTextWriter_Fix : HtmlTextWriter
{
public HtmlTextWriter_Fix( TextWriter writer ) : base( writer )
{
}
public override void Write( string s )
{
if( s.Contains( "ResourceStreamID=Blank.gif ALT=\"Blank image" ) )
s = s.Replace( "ResourceStreamID=Blank.gif ALT=\"Blank image", "ResourceStreamID=Blank.gif\" alt=\"No content" );//[awaiss] The length has to match or the resulting content won't be parsed correctly (not sure why)
base.Write( s );
}
}
You may also raise the issue to Microsoft Feedback, the product team may help to do troubleshooting.
Your feedback is valuable for us to improve our products and increase the level of service provided.
https://feedback.azure.com/forums/908035-sql-server
Regards,
Zoe
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
What can I do if my transaction log is full?--- Hot issues November
How to convert Profiler trace into a SQL Server table -- Hot issues November