WriteOnly Properties?
Microsoft says WriteOnly properties are not good... but i dont know another way to write this object without using a write only property and was wondering if someone could point me in a direction.... here is the object
Code Snippet
Imports
SystemImports
System.Web.UINamespace
Framework.Web.ControlsPublicClass ScriptRefInherits WebControls.LiteralPrivateConst _scriptRefMarkupAsString ="<script src=""{0}"" type=""text/javascript""></script>"PublicWriteOnlyProperty Src()AsStringSet(ByVal valueAsString)Me.Text =String.Format(_scriptRefMarkup, value.Replace("~", System.Web.HttpContext.Current.Request.ApplicationPath))EndSetEndPropertyEndClassEnd
NamespaceI could change it to a public property but how would i set the Me.Text from this control being a literal to the value specified in the set?

