We've developed our custom .Net Server Control for our ASP.Net project use. It allows users to put HTML/Javascript code into its inner text node. The problem is, when the user is inputting the HTML/Javascript inside the server control, they can't benefit from the built-in intellisense of the Visual Studio. How can we change the implementation of the server in order provide that?
Thanks.
--- EDITED --- For example: The tag for the self-developed server control is , I mean the intellisense for the inner html/javascript in it, for example
<MyServerContol>
var str1 = 'hello world';
console.log('Msg is ' + str1);
</MyServerControl>