Click here to Skip to main content
15,891,136 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Help with Ajax and VWD 2008 Express Pin
Eduard Keilholz2-Oct-08 5:27
Eduard Keilholz2-Oct-08 5:27 
QuestionWhy is my ajax/asp.net website so slow on the production server? Pin
Nada Adel1-Oct-08 9:28
Nada Adel1-Oct-08 9:28 
AnswerRe: Why is my ajax/asp.net website so slow on the production server? Pin
Colin Angus Mackay1-Oct-08 10:10
Colin Angus Mackay1-Oct-08 10:10 
GeneralRe: Why is my ajax/asp.net website so slow on the production server? Pin
Nada Adel1-Oct-08 10:17
Nada Adel1-Oct-08 10:17 
GeneralRe: Why is my ajax/asp.net website so slow on the production server? Pin
Colin Angus Mackay1-Oct-08 11:27
Colin Angus Mackay1-Oct-08 11:27 
QuestionSending email in .Net Pin
Aptiva Dave1-Oct-08 6:58
Aptiva Dave1-Oct-08 6:58 
QuestionUser control properties Pin
Member 55522191-Oct-08 2:46
Member 55522191-Oct-08 2:46 
AnswerRe: User control properties [modified] Pin
thomasa1-Oct-08 3:18
thomasa1-Oct-08 3:18 
You first have to find the control in the code behind, several methods to do that, her is one:

the main page should look something like this.

<%@ Register TagPrefix="uc1" TagName="usersearch" Src="Controls/Search/usersearch.ascx" %>
.
.
.
.
<uc1:usersearchrunat="server" id="ucUsersearch"/>


In the code behind on the main page:
protected void btnSomeButton_Click(object sender, System.EventArgs e)
{
Controls.Search.usersearch _ucUsersearch = (Controls.Search.usersearch)this.Page.FindControl("ucUsersearch");
string strTheText = ucUsersearch.TextInTexbox;
}


in the code behind of the usersearch you have the following property;
public string TextInTexbox
{
get
{
return this.tbTheTextBox.Text;
}
set
{
this.tbTheTextBox.Text = Value;
}
}
}




Hope it helps
Thomas

modified on Wednesday, October 1, 2008 9:52 AM

QuestionHow to use Nant with ASP.net Pin
Sanjay4India1-Oct-08 1:27
Sanjay4India1-Oct-08 1:27 
AnswerRe: How to use Nant with ASP.net Pin
Ashfield1-Oct-08 1:36
Ashfield1-Oct-08 1:36 
QuestionHow could I retrieve all the fields value by a class without assigning the values to class objects inside a procedure? Pin
JUNEYT1-Oct-08 1:09
JUNEYT1-Oct-08 1:09 
AnswerRe: How could I retrieve all the fields value by a class without assigning the values to class objects inside a procedure? Pin
Ashfield1-Oct-08 1:34
Ashfield1-Oct-08 1:34 
GeneralRe: How could I retrieve all the fields value by a class without assigning the values to class objects inside a procedure? Pin
JUNEYT1-Oct-08 7:49
JUNEYT1-Oct-08 7:49 
GeneralRe: How could I retrieve all the fields value by a class without assigning the values to class objects inside a procedure? Pin
Ashfield1-Oct-08 8:43
Ashfield1-Oct-08 8:43 
QuestionUpdate Panel Pin
gautamamit81-Oct-08 0:57
gautamamit81-Oct-08 0:57 
AnswerRe: Update Panel Pin
Brij1-Oct-08 1:22
mentorBrij1-Oct-08 1:22 
GeneralRe: Update Panel Pin
gautamamit81-Oct-08 1:37
gautamamit81-Oct-08 1:37 
GeneralRe: Update Panel Pin
Brij1-Oct-08 1:49
mentorBrij1-Oct-08 1:49 
AnswerRe: Update Panel Pin
Ashfield1-Oct-08 1:33
Ashfield1-Oct-08 1:33 
AnswerRe: Update Panel Pin
Abhijit Jana1-Oct-08 1:36
professionalAbhijit Jana1-Oct-08 1:36 
GeneralRe: Update Panel Pin
gautamamit81-Oct-08 20:43
gautamamit81-Oct-08 20:43 
QuestionPage Expire in Asp.net1.1 Pin
code Stuff1-Oct-08 0:44
code Stuff1-Oct-08 0:44 
AnswerRe: Page Expire in Asp.net1.1 Pin
John_Adams1-Oct-08 11:11
John_Adams1-Oct-08 11:11 
Questionsubtotal in excel using vb Pin
jhyn1-Oct-08 0:27
jhyn1-Oct-08 0:27 
AnswerWrong forum! Pin
ChandraRam1-Oct-08 1:54
ChandraRam1-Oct-08 1:54 

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.