Click here to Skip to main content
15,907,396 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: problem in imagebutton? Pin
sulabh202014-May-07 1:41
sulabh202014-May-07 1:41 
GeneralRe: problem in imagebutton? Pin
enjoycrack16-May-07 23:49
enjoycrack16-May-07 23:49 
QuestionASP.NET COOKIE Pin
Socheat.Net14-May-07 1:16
Socheat.Net14-May-07 1:16 
AnswerRe: ASP.NET COOKIE Pin
enjoycrack14-May-07 1:34
enjoycrack14-May-07 1:34 
GeneralRe: ASP.NET COOKIE Pin
Socheat.Net14-May-07 15:16
Socheat.Net14-May-07 15:16 
GeneralRe: ASP.NET COOKIE Pin
enjoycrack16-May-07 23:44
enjoycrack16-May-07 23:44 
GeneralRe: ASP.NET COOKIE Pin
Socheat.Net17-May-07 0:05
Socheat.Net17-May-07 0:05 
AnswerRe: ASP.NET COOKIE Pin
Bijay Bhaskar Deo14-May-07 2:15
Bijay Bhaskar Deo14-May-07 2:15 
Hi Socheat.Net,
Wht does this mean ?

Response.Cookie("username")=txtUser.Text
Response.Cookie("password")=txtpwd.Text

Do u have already created two cookies as named above, username and password. I don't think so.
Write rather like this,
HttpCookie ck = new HttpCookie("username");
ck.Value = txtUser.Text;
DateTime dt = new DateTime(DateTime.Now.Year+1, DateTime.Now.Month, DateTime.Now.Day); //use ur expiration
ck.Expires = dt;
ck.Expires = dt;
Response.Cookies.Add(ck);









Bijay Bhaskar Deo
Thanks & Regard

GeneralRe: ASP.NET COOKIE Pin
Socheat.Net14-May-07 15:15
Socheat.Net14-May-07 15:15 
GeneralRe: ASP.NET COOKIE Pin
Mark Greenwood14-May-07 18:24
Mark Greenwood14-May-07 18:24 
GeneralRe: ASP.NET COOKIE Pin
Socheat.Net14-May-07 18:33
Socheat.Net14-May-07 18:33 
QuestionEvent Handling Pin
SPanicker*14-May-07 1:11
SPanicker*14-May-07 1:11 
AnswerRe: Event Handling Pin
PSK_14-May-07 1:15
PSK_14-May-07 1:15 
GeneralRe: Event Handling Pin
SPanicker*14-May-07 1:25
SPanicker*14-May-07 1:25 
GeneralRe: Event Handling Pin
sulabh202014-May-07 1:45
sulabh202014-May-07 1:45 
GeneralRe: Event Handling Pin
SPanicker*16-May-07 0:58
SPanicker*16-May-07 0:58 
AnswerRe: Event Handling Pin
badgrs14-May-07 3:18
badgrs14-May-07 3:18 
GeneralRe: Event Handling Pin
SPanicker*16-May-07 0:59
SPanicker*16-May-07 0:59 
QuestionHyperlinkField of Gridview Pin
deep714-May-07 1:04
deep714-May-07 1:04 
AnswerRe: HyperlinkField of Gridview Pin
PSK_14-May-07 1:19
PSK_14-May-07 1:19 
AnswerRe: HyperlinkField of Gridview Pin
Bijay Bhaskar Deo14-May-07 1:32
Bijay Bhaskar Deo14-May-07 1:32 
GeneralRe: HyperlinkField of Gridview Pin
deep714-May-07 2:41
deep714-May-07 2:41 
AnswerRe: HyperlinkField of Gridview Pin
Sathesh Sakthivel14-May-07 3:08
Sathesh Sakthivel14-May-07 3:08 
QuestionError when debugging Pin
rkherath14-May-07 0:05
rkherath14-May-07 0:05 
AnswerRe: Error when debugging Pin
Bijay Bhaskar Deo14-May-07 1:00
Bijay Bhaskar Deo14-May-07 1:00 

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.