Click here to Skip to main content
15,885,435 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: calendar problem Pin
VishalSharmaDev5-Mar-07 2:33
VishalSharmaDev5-Mar-07 2:33 
Questionhow to make page as start page in IIS Pin
mohd imran abdul aziz5-Mar-07 1:33
mohd imran abdul aziz5-Mar-07 1:33 
AnswerRe: how to make page as start page in IIS Pin
Naveed Kamboh5-Mar-07 2:02
Naveed Kamboh5-Mar-07 2:02 
AnswerRe: how to make page as start page in IIS Pin
theScorp5-Mar-07 18:26
theScorp5-Mar-07 18:26 
QuestionNo Subject Pin
RajeevKumarSharma5-Mar-07 1:05
RajeevKumarSharma5-Mar-07 1:05 
QuestionCan i return a class from a method? Pin
Naveed Kamboh5-Mar-07 1:04
Naveed Kamboh5-Mar-07 1:04 
AnswerRe: Can i return a class from a method? Pin
Irshad Sulaimani5-Mar-07 1:31
Irshad Sulaimani5-Mar-07 1:31 
AnswerRe: Can i return a class from a method? Pin
Spunky Coder5-Mar-07 1:45
Spunky Coder5-Mar-07 1:45 
using System;
using System.Web;

public partial class Trial : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Test test1 = this.ReturnClass("Hello");

Response.Write("" + test1.name);

}

protected Test ReturnClass(string var)
{
Test test = new Test();
test.name = var;

return test;
}

public class Test
{
public string name;
protected string Place;

}

}


Is this the thing u want?

Koushik

GeneralRe: Can i return a class from a method? Pin
Naveed Kamboh5-Mar-07 2:01
Naveed Kamboh5-Mar-07 2:01 
GeneralTo further elaborate Pin
Ennis Ray Lynch, Jr.5-Mar-07 4:28
Ennis Ray Lynch, Jr.5-Mar-07 4:28 
Questioni want to save id from datagrid colomn.and use this value on other page . Pin
Piyush Vardhan Singh5-Mar-07 0:50
Piyush Vardhan Singh5-Mar-07 0:50 
AnswerRe: i want to save id from datagrid colomn.and use this value on other page . Pin
Irshad Sulaimani5-Mar-07 1:35
Irshad Sulaimani5-Mar-07 1:35 
Questionsoap vs http Pin
venkatasivaramaprasad5-Mar-07 0:26
venkatasivaramaprasad5-Mar-07 0:26 
AnswerRe: soap vs http Pin
badgrs5-Mar-07 0:39
badgrs5-Mar-07 0:39 
AnswerRe: soap vs http Pin
Vasudevan Deepak Kumar6-Mar-07 9:34
Vasudevan Deepak Kumar6-Mar-07 9:34 
QuestionQUICKBOOK Integration Pin
DGtech5-Mar-07 0:24
DGtech5-Mar-07 0:24 
AnswerRe: QUICKBOOK Integration Pin
MaxRelaxman5-Mar-07 9:29
MaxRelaxman5-Mar-07 9:29 
AnswerRe: QUICKBOOK Integration Pin
Vasudevan Deepak Kumar6-Mar-07 9:35
Vasudevan Deepak Kumar6-Mar-07 9:35 
QuestionCrystal report is not working on client Pin
AjayKrSh4-Mar-07 23:57
AjayKrSh4-Mar-07 23:57 
AnswerRe: Crystal report is not working on client Pin
Sylvester george6-Mar-07 2:08
Sylvester george6-Mar-07 2:08 
QuestionRegarding System.Object Class Pin
VishalSharmaDev4-Mar-07 23:33
VishalSharmaDev4-Mar-07 23:33 
AnswerRe: Regarding System.Object Class Pin
Irshad Sulaimani5-Mar-07 0:10
Irshad Sulaimani5-Mar-07 0:10 
Questionvss Pin
siddisagar4-Mar-07 23:23
siddisagar4-Mar-07 23:23 
AnswerRe: vss Pin
badgrs5-Mar-07 0:36
badgrs5-Mar-07 0:36 
GeneralRe: vss Pin
Irshad Sulaimani5-Mar-07 1:28
Irshad Sulaimani5-Mar-07 1:28 

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.