If i have a page where i create an instance of a dll and
without invoking any method can I send values to next page ?
By IsCrossPostback Property we can send values to the next
page..
Exam::
Let There Are 2 Page page1.aspx & page2.aspx.....I wanna
send value of a textbox from page1 to page2.
Step 1::
In aspx of page1,
<div>
<asp:TextBox ID="Textbox1"......></asp:TextBox>
<asp:Button ID="Button1"....postbackurl="~page2.aspx"/>
</div>
Step2::
In Pageload() of page2.aspx
pageload()
{
if(PreviousPage!=null && PreviousPage.IsCrossPostBack)
{
TextBox text=PreviousPage.FindControl("Textbox1")
as TextBox;
if(text!=null)
{
Label1.Text=text.Text;
}
}
}
.........Here Label1 is a label of page2.Where i show the
value of 1st page's text box value....
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the difference between server-side scripting and client-side scripting?
What does the "EnableViewState" property do? Why would I want it on or off?
Define tracing.
What is the difference between a Debug and Release build? Is there a significant speed difference? Why or why not?
How many types of cache are there?
What r the asp.net list controls and difference between them?
Give an example appropriate use forweb service as opposed to a non-serviced .NET component
Write a code for "RequiredFieldValidator" in java script
What is reflection and disadvantages of reflection ?
how can we display records in single datagrid using two datasets in different place?
2 Answers Global Computer, Honeywell,
web farm .. how does session shuld be stored... if inproc used? does the session persists from one server to other.
What is mvc in angular?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)