Click here to Skip to main content
15,914,162 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to create dynamic link Pin
coolestCoder8-Feb-07 22:15
coolestCoder8-Feb-07 22:15 
GeneralRe: how to create dynamic link Pin
gauthee8-Feb-07 22:59
gauthee8-Feb-07 22:59 
GeneralRe: how to create dynamic link Pin
coolestCoder8-Feb-07 23:18
coolestCoder8-Feb-07 23:18 
QuestionHow to send multiple values from one page to another Pin
gauthee8-Feb-07 19:26
gauthee8-Feb-07 19:26 
AnswerRe: How to send multiple values from one page to another Pin
PSK_8-Feb-07 19:49
PSK_8-Feb-07 19:49 
AnswerRe: How to send multiple values from one page to another Pin
Sandeep Akhare8-Feb-07 20:28
Sandeep Akhare8-Feb-07 20:28 
GeneralRe: How to send multiple values from one page to another Pin
gauthee8-Feb-07 21:34
gauthee8-Feb-07 21:34 
GeneralRe: How to send multiple values from one page to another Pin
Sandeep Akhare8-Feb-07 22:15
Sandeep Akhare8-Feb-07 22:15 
private string _CategoryId = "";
public string CategoryId
{
get { return this._CategoryId; }
set { this._CategoryId = value; }
}
private string _CategoryName = "No Group";
public string CategoryName
{
get { return this._CategoryName; }
set { this._CategoryName = value; }
}
private int _CategoryState = 0;
public int CategoryState
{
get { return this._CategoryState; }
set { this._CategoryState = value; }
}
private string _AccountNumber = "";
public string AccountNumber
{
get { return this._AccountNumber; }
set { this._AccountNumber = value; }
}
private string _AccountType = "";
public string AccountType
{
get{ return this._AccountType;}
set{ this._AccountType = value;}
}
private string _RoutingNumber = "";
public string RoutingNumber
{
get{ return this._RoutingNumber;}
set{ this._RoutingNumber = value;}
}
private System.DateTime _LastCollectionDate;
public System.DateTime LastCollectionDate
{
get { return this._LastCollectionDate; }
set { this._LastCollectionDate = value; }
}
private bool _HasPendingCollections;
public bool HasPendingCollections
{
get{ return this._HasPendingCollections;}
set{ this._HasPendingCollections = value;}
}
private bool _ShowActionLinks = false;
public bool ShowActionLinks
{
get{return _ShowActionLinks;}
set{_ShowActionLinks = value;}
}
private string _BankName = "";
public string BankName
{
get { return this._BankName; }
set { this._BankName = value; }
}
this is container class with public properties and private varaibles
create a object of this class and pass this object to the page where you want to show/use tha data
example from page 1 to page 2
InSubmitstep of page1

this.PropertyOfPage2.pupulateData(this.DataContainerObject);
i think it is effective if you have large data and pages ?


<l>Thanks and Regards
Sandeep

GeneralRe: How to send multiple values from one page to another Pin
PSK_8-Feb-07 22:04
PSK_8-Feb-07 22:04 
GeneralRe: How to send multiple values from one page to another Pin
Sandeep Akhare8-Feb-07 22:45
Sandeep Akhare8-Feb-07 22:45 
Generalhow to validate input if violate between two datetime Pin
bernie_0118-Feb-07 22:49
bernie_0118-Feb-07 22:49 
GeneralRe: how to validate input if violate between two datetime Pin
Sandeep Akhare8-Feb-07 23:07
Sandeep Akhare8-Feb-07 23:07 
GeneralRe: how to validate input if violate between two datetime Pin
bernie_0119-Feb-07 13:23
bernie_0119-Feb-07 13:23 
AnswerRe: How to send multiple values from one page to another Pin
coolestCoder8-Feb-07 20:29
coolestCoder8-Feb-07 20:29 
GeneralRe: How to send multiple values from one page to another Pin
Sandeep Akhare8-Feb-07 20:48
Sandeep Akhare8-Feb-07 20:48 
GeneralRe: How to send multiple values from one page to another Pin
coolestCoder8-Feb-07 22:09
coolestCoder8-Feb-07 22:09 
GeneralRe: How to send multiple values from one page to another Pin
gauthee8-Feb-07 21:33
gauthee8-Feb-07 21:33 
GeneralRe: How to send multiple values from one page to another Pin
coolestCoder8-Feb-07 22:13
coolestCoder8-Feb-07 22:13 
AnswerRe: How to lode xml file in datagrid Pin
gauthee8-Feb-07 19:27
gauthee8-Feb-07 19:27 
GeneralUsing XMLTextWriter Pin
Vsree8-Feb-07 20:05
Vsree8-Feb-07 20:05 
QuestionUsing XMLTextWriter Pin
Vsree8-Feb-07 18:36
Vsree8-Feb-07 18:36 
AnswerRe: Using XMLTextWriter Pin
Sandeep Akhare8-Feb-07 23:14
Sandeep Akhare8-Feb-07 23:14 
Questionhai every1 Pin
Ishwarya M8-Feb-07 17:34
Ishwarya M8-Feb-07 17:34 
AnswerRe: hai every1 Pin
dinus288-Feb-07 17:47
dinus288-Feb-07 17:47 
AnswerRe: hai every1 Pin
gauthee8-Feb-07 17:48
gauthee8-Feb-07 17:48 

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.