It’s possible:
you can use dotnet ( System.Net.WebClient ) to pull the source from some url ( using webclient’s DownloadStringAsync() ). Assign a DownloadStringCompleted event handler to the web component, once triggered the downloaded text is in the events .Result property. Which is the downloaded string in that case. If that’s a valid maxscript source, you can simply use maxscript’s execute() on it