I have been reading a book on ASP.net and at a point where they are talking about caching and the sqldatasource. In the book it says that the enablecaching property of the sqldatasource is by default set to false. To test this out I created a simple form with a dropdownlist populated by a...
I think I may understand why I am getting this error now. First of all thanks BobRodes for the help. I believe what is happening is when I rename the assembly and then click button2:
System.Reflection.Assembly assem = System.Reflection.Assembly.Load("ReflectionTesting");
Object c =...
In my question I show the code under button2. Here is the code again:
System.Reflection.Assembly assem = System.Reflection.Assembly.Load("ReflectionTesting");
Object c = assem.CreateInstance("reflectionTesting.clsCar");
MessageBox.Show(c.ToString());
All I did was hard code to load assembly...
I am trying to understand the concept of reflection and found a tutorial on the web. I thought I understood it until I started to play with it a little further. I created a winform app named 'reflectiontesting'. I also created a simple class called 'clsCar' that simply overrides the...
I have a windows application that was built with vs2003. One part of the application uses a xml file to adjust the formatting of questions that are being displayed. The problem here is that the application uses the lines,
dim size as integer
size = "14.25" (this is actually a string being...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.