Click here to Skip to main content
15,906,645 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: ASP:menu control question Pin
gauthee25-Mar-08 4:05
gauthee25-Mar-08 4:05 
GeneralRe: ASP:menu control question Pin
Jesse Squire25-Mar-08 4:08
Jesse Squire25-Mar-08 4:08 
GeneralRe: ASP:menu control question Pin
Declan Bright25-Mar-08 4:16
Declan Bright25-Mar-08 4:16 
GeneralSend Mail Pin
mehrdadc4825-Mar-08 2:59
mehrdadc4825-Mar-08 2:59 
GeneralRe: Send Mail Pin
eyeseetee25-Mar-08 3:07
eyeseetee25-Mar-08 3:07 
QuestionHow to retrieve the value of textbox using session Pin
anpm25-Mar-08 2:18
anpm25-Mar-08 2:18 
GeneralRe: How to retrieve the value of textbox using session Pin
Jesse Squire25-Mar-08 2:38
Jesse Squire25-Mar-08 2:38 
QuestionRe: How to retrieve the value of textbox using session Pin
anpm25-Mar-08 14:44
anpm25-Mar-08 14:44 
When i wrote the code below it is giving syntax error in if statement saying ; expected .I am using c#.



public partial class _Default : System.Web.UI.Page
{

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack )&&(!String.IsNullOrEmpty(Session["FirstName"])) && (!String.IsNullOrEmpty(Session["LastName"] ))



{
TextBox1.Text = Session["FirstName"].ToString();
TextBox2.Text = Session["LastName"].ToString();

}


}
protected void Button1_Click(object sender, EventArgs e)
{
Session["FirstName"] = TextBox1.Text.ToString ();
Session["LastName"] = TextBox2.Text.ToString ();

Response.Redirect("~/language.aspx" );
}
}
GeneralRe: How to retrieve the value of textbox using session Pin
Jesse Squire25-Mar-08 15:44
Jesse Squire25-Mar-08 15:44 
QuestionRe: How to retrieve the value of textbox using session Pin
anpm25-Mar-08 16:06
anpm25-Mar-08 16:06 
GeneralRe: How to retrieve the value of textbox using session Pin
eyeseetee25-Mar-08 3:00
eyeseetee25-Mar-08 3:00 
Questionrefreshing the page Pin
Pankaj Garg25-Mar-08 0:55
Pankaj Garg25-Mar-08 0:55 
GeneralRe: refreshing the page Pin
eyeseetee25-Mar-08 1:23
eyeseetee25-Mar-08 1:23 
GeneralRe: refreshing the page Pin
Pankaj Garg25-Mar-08 1:42
Pankaj Garg25-Mar-08 1:42 
GeneralRe: refreshing the page Pin
Declan Bright25-Mar-08 1:43
Declan Bright25-Mar-08 1:43 
Questionmessage box button code Pin
Pankaj Garg25-Mar-08 0:18
Pankaj Garg25-Mar-08 0:18 
GeneralRe: message box button code Pin
Christian Graus25-Mar-08 0:37
protectorChristian Graus25-Mar-08 0:37 
QuestionRe: message box button code Pin
Pankaj Garg25-Mar-08 0:48
Pankaj Garg25-Mar-08 0:48 
GeneralRe: message box button code Pin
Christian Graus25-Mar-08 1:02
protectorChristian Graus25-Mar-08 1:02 
QuestionRe: message box button code Pin
Pankaj Garg25-Mar-08 1:14
Pankaj Garg25-Mar-08 1:14 
GeneralRe: message box button code Pin
Christian Graus25-Mar-08 10:01
protectorChristian Graus25-Mar-08 10:01 
GeneralRe: message box button code Pin
eyeseetee25-Mar-08 0:55
eyeseetee25-Mar-08 0:55 
JokeRe: message box button code Pin
Pankaj Garg25-Mar-08 1:01
Pankaj Garg25-Mar-08 1:01 
GeneralRe: message box button code Pin
lakshmichawala25-Mar-08 1:58
lakshmichawala25-Mar-08 1:58 
QuestionRe: message box button code Pin
Pankaj Garg25-Mar-08 2:26
Pankaj Garg25-Mar-08 2:26 

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.