I have a link button on a master page that will proform a postbackurl to a page and then find a control and set the text after I click it a second time. I would like to have the text in the text box set on the first click.
<Code>
Dim PostBackUrl As String
PostBackUrl = (
"~/UIUI/JKL.aspx?TxtTextValue=Value")
Dim content As ContentPlaceHolder
content = Page.Master.FindControl(
"ContentPlaceHolder1")
Dim GmAwayTeamTextBox As TextBox
GmAwayTeamTextBox = content.FindControl(
"FormView1").FindControl("GmAwayTeamTextBox")
GmAwayTeamTextBox.Text =
"Value"
</Code>
Thanks
OneIDesigned