Click here to Skip to main content
15,898,723 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: connection string Pin
SayreCC7-May-09 14:42
SayreCC7-May-09 14:42 
AnswerRe: connection string Pin
Perry Holman7-May-09 23:51
Perry Holman7-May-09 23:51 
AnswerRe: connection string Pin
EssamDev9-May-09 15:46
EssamDev9-May-09 15:46 
QuestionAdding treeview nodes to righthand side from left hand side Pin
meeram3957-May-09 2:06
meeram3957-May-09 2:06 
AnswerRe: Adding treeview nodes to righthand side from left hand side Pin
Herman<T>.Instance7-May-09 4:34
Herman<T>.Instance7-May-09 4:34 
QuestionHow to access the objects of the class having textbox and dropDownlist Pin
vishmri7-May-09 1:57
vishmri7-May-09 1:57 
AnswerRe: How to access the objects of the class having textbox and dropDownlist Pin
Spunky Coder7-May-09 2:17
Spunky Coder7-May-09 2:17 
GeneralRe: How to access the objects of the class having textbox and dropDownlist Pin
vishmri7-May-09 18:51
vishmri7-May-09 18:51 
this is the class whose object i want to access

public class Class1
{
private TextBox txtname;
public TextBox Txtname
{
get
{
return txtname;
}
set
{
txtname = value;
}
}
}

here i m creating the object of this class on btnSave click and trying to access this object on btnGet click.....

protected void Page_Load(object sender, EventArgs e)
{

}
protected void btnsave_Click(object sender, EventArgs e)
{
Class1 obj = new Class1();
obj.Txtname = new TextBox();

obj.Txtname.Text = "mridul vishnoi";
obj.Txtname.Visible = true;
Page.Form.Controls.Add(obj.Txtname);
}
protected void btnGet_Click(object sender, EventArgs e)
{

}
QuestionTrack how many times my file is downlod Pin
farogh haider7-May-09 1:36
farogh haider7-May-09 1:36 
AnswerRe: Track how many times my file is downlod Pin
Herman<T>.Instance7-May-09 4:29
Herman<T>.Instance7-May-09 4:29 
QuestionPage Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 0:30
professionalVimalsoft(Pty) Ltd7-May-09 0:30 
AnswerRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
shenbagasiva7-May-09 4:06
shenbagasiva7-May-09 4:06 
GeneralRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 4:19
professionalVimalsoft(Pty) Ltd7-May-09 4:19 
AnswerRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
newc17-May-09 4:22
newc17-May-09 4:22 
GeneralRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 4:25
professionalVimalsoft(Pty) Ltd7-May-09 4:25 
GeneralRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 23:02
professionalVimalsoft(Pty) Ltd7-May-09 23:02 
Questioncredit card validation Pin
jinal_pdoshi7-May-09 0:01
jinal_pdoshi7-May-09 0:01 
AnswerRe: credit card validation Pin
Spunky Coder7-May-09 0:10
Spunky Coder7-May-09 0:10 
AnswerRe: credit card validation Pin
Vasudevan Deepak Kumar7-May-09 22:12
Vasudevan Deepak Kumar7-May-09 22:12 
Questionjava script for user can enter capital alplbets means capital A to Z only in text box. Pin
sanju056-May-09 23:58
sanju056-May-09 23:58 
AnswerRe: java script for user can enter capital alplbets means capital A to Z only in text box. Pin
Spunky Coder7-May-09 0:38
Spunky Coder7-May-09 0:38 
Questionproblem with apple safari Pin
nisha000006-May-09 21:15
nisha000006-May-09 21:15 
AnswerRe: problem with apple safari Pin
SeMartens6-May-09 22:52
SeMartens6-May-09 22:52 
Questionissues Pin
shenbagasiva6-May-09 21:05
shenbagasiva6-May-09 21:05 
AnswerRe: issues Pin
SeMartens7-May-09 0:07
SeMartens7-May-09 0:07 

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.