how do i copy textbox contents of 1 form to another form
Answers were Sorted based on User's Feedback
Answer / umedh singh
Hi
Windows Application Coding
##Form1##
on button_click event
Form2 f2 =new Form2();
f2.form1inform2=this;
f2.show();
##Form2##
public form1 form1inform2;//variable
on form2_load event
this.TextBox1.text=((form1)this.form1inform2).textbox1.text;
.........................................
Web Application coding use QueryString
on button_click event
Response.Redirect("Default2.aspx?a="+textBox1.text);
on page_load event
textBox1.text=Request.QueryString["a"].toString();
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / sreeni
both the above answers are correct. Use First Answer for
Web applications and Second one for Windows applications.
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / justin dhas
Hi,
By using state management variables you can get the value of textbox from one form to another,like querystring,session,cookies etc
eg)
Session["value"]=textboxid.Text;//Set the value in one form
string s=Session["value".ToString()//get the value in another form
| Is This Answer Correct ? | 12 Yes | 14 No |
Answer / vishal m.s.
In 2nd form create an object for the 1st form
And write a code as below
//Object creation for form1 in form2(on command Button)
Form1 f1 = new Form1();
TextBox1.Text = f1.TextBox1.Text;
| Is This Answer Correct ? | 4 Yes | 29 No |
Write a program to count 3Letter, 4Letter and 5Letter words from a file and print the number of 3Letter, 4Letter and 5Letter words. Delimiter is space, tab, hifen. Also we should not consider the line in the file after we encounter # in that line.
How to use ASP.NET 2.0's TreeView to Display Hierarchical Data?
How to find No of classes,Packages,No of Methods per Classes and Depth of Inheritance for selecting source code in windows form application using c# .net? (Source code is input Program. It may be Java or .net) Please help me..) Thanks..)
write a Program to copy the string using switch case.
program for straight line(y=mx+c)
Write a program which has a function and that function should take 2 or 3 or any number of strings and it should return the largest common prefix of all those strings. If there is no common prefix it should return an empty string. for eg:- INPUT OUTPUT glo {glory,glorious,glod} gl {glad,glow} {calendar,phone} empty string
Write a program to convert postfix expression to infix expression.
Automatically Hyperlink URLs and E-Mail Addresses in ASP.NET Pages with C#
Give the code for Handling Mouse Events?
Write a program to input an integer and - display the reverse - display the sum of each digit - should include logic that considers the input number as any number of digits long
program for addition of fraction(M/N + P/Q = Y/Z)
Write a function which accepts a sentence as input parameter.Each word in that sentence is to be reversed. Space should be there between each words.Return the sentence with reversed words to main function and produce the required output. for eg:- i/p: jack jill jung kill o/p: kcaj llij gnuj llik