Click here to Skip to main content
15,867,835 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to pass List collection to a web method??? Pin
JimFeng21-Jul-06 8:37
JimFeng21-Jul-06 8:37 
AnswerRe: How to pass List collection to a web method??? Pin
Felipe Dalorzo21-Jul-06 10:12
Felipe Dalorzo21-Jul-06 10:12 
GeneralRe: How to pass List collection to a web method??? Pin
JimFeng24-Jul-06 7:04
JimFeng24-Jul-06 7:04 
QuestionNot loading ascx in some websites only Pin
SIJUTHOMASP21-Jul-06 6:36
professionalSIJUTHOMASP21-Jul-06 6:36 
QuestionNon Item Selected on RadioButtonList Pin
Armando_Ramirez21-Jul-06 6:33
Armando_Ramirez21-Jul-06 6:33 
AnswerRe: Non Item Selected on RadioButtonList Pin
Grapes-R-Fun21-Jul-06 14:45
Grapes-R-Fun21-Jul-06 14:45 
QuestionType.GetType() Pin
Mircea Grelus21-Jul-06 6:10
Mircea Grelus21-Jul-06 6:10 
AnswerRe: Type.GetType() Pin
Felipe Dalorzo21-Jul-06 8:11
Felipe Dalorzo21-Jul-06 8:11 
Yes what you are doing is not right...

Here is a the rith way:
<br />
Type type = Type.GetType("MyNameSpace.TheWholeThing.MyClassName, MyNameSpace");<br />


MyAssemblyName issually is the same as the namespace, for instance but not always:
<br />
namespace TQU.Demo{<br />
	public class Test2{<br />
		<br />
	}<br />
}<br />
<br />
namespace TestingTypes<br />
{<br />
	class Class1<br />
	{<br />
<br />
<br />
		[STAThread]<br />
		static void Main(string[] args)<br />
		{<br />
                   Type type = Type.GetType("TQU.Demo.Test2, TestingTypes");<br />
                }<br />
        }<br />
}<br />


Greetings Poke tongue | ;-P

FDM

GeneralRe: Type.GetType() Pin
Mircea Grelus21-Jul-06 8:28
Mircea Grelus21-Jul-06 8:28 
GeneralRe: Type.GetType() Pin
Felipe Dalorzo21-Jul-06 10:05
Felipe Dalorzo21-Jul-06 10:05 
GeneralRe: Type.GetType() Pin
Mircea Grelus21-Jul-06 10:23
Mircea Grelus21-Jul-06 10:23 
GeneralRe: Type.GetType() Pin
Felipe Dalorzo21-Jul-06 10:40
Felipe Dalorzo21-Jul-06 10:40 
GeneralRe: Type.GetType() Pin
Mircea Grelus21-Jul-06 12:53
Mircea Grelus21-Jul-06 12:53 
Questionreporting tool with printing option Pin
cdotpal21-Jul-06 6:07
cdotpal21-Jul-06 6:07 
AnswerRe: reporting tool with printing option Pin
Dustin Metzgar21-Jul-06 8:49
Dustin Metzgar21-Jul-06 8:49 
GeneralRe: reporting tool with printing option Pin
cdotpal26-Jul-06 6:40
cdotpal26-Jul-06 6:40 
AnswerRe: reporting tool with printing option Pin
Frank Kerrigan21-Jul-06 13:14
Frank Kerrigan21-Jul-06 13:14 
QuestionJavascript is making my hair fall out Pin
gantww21-Jul-06 5:14
gantww21-Jul-06 5:14 
GeneralRe: Javascript is making my hair fall out Pin
User 171649221-Jul-06 8:30
professionalUser 171649221-Jul-06 8:30 
GeneralRe: Javascript is making my hair fall out Pin
gantww21-Jul-06 8:43
gantww21-Jul-06 8:43 
QuestionEmpty text box - want to save as a null value Pin
widget121-Jul-06 4:47
widget121-Jul-06 4:47 
AnswerRe: Empty text box - want to save as a null value Pin
Grapes-R-Fun21-Jul-06 14:52
Grapes-R-Fun21-Jul-06 14:52 
QuestionHelp catch speeling errors in code..... Pin
Are Jay21-Jul-06 4:27
Are Jay21-Jul-06 4:27 
AnswerRe: Help catch speeling errors in code..... Pin
Grapes-R-Fun21-Jul-06 14:59
Grapes-R-Fun21-Jul-06 14:59 
GeneralRe: Help catch speeling errors in code..... Pin
Are Jay24-Jul-06 4:10
Are Jay24-Jul-06 4:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.