HI
I have an Addin, which worked fine with previous versions of VS.
This addin is a library of our controls, I just drag and drop our controls from there to ASP form.
basically all I do from this addin is
protected override void OnItemDrag(System.Windows.Forms.ItemDragEventArgs e)
{
base.OnItemDrag(e);
DoDragDrop("<a href=test.aspx>Test</a>", DragDropEffects.Copy);
} // OnItemDrag
the problem is the Design View of VS 2008 replaces all < > with < >, while VS2005 creates control.
In HTML view it doesnt't replace, it works fine, but I really need Design View working correctly.
Any ideas how to fix it?