Click here to Skip to main content
15,888,579 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Splash screen in asp.net Pin
Christian Graus14-Sep-09 0:47
protectorChristian Graus14-Sep-09 0:47 
AnswerRe: Splash screen in asp.net Pin
Abhishek Sur14-Sep-09 0:48
professionalAbhishek Sur14-Sep-09 0:48 
QuestionDisplay Images on Page from Database Pin
AB777113-Sep-09 23:25
AB777113-Sep-09 23:25 
AnswerRe: Display Images on Page from Database Pin
Aman Bhullar13-Sep-09 23:47
Aman Bhullar13-Sep-09 23:47 
AnswerRe: Display Images on Page from Database Pin
Amit Patel198514-Sep-09 0:01
Amit Patel198514-Sep-09 0:01 
AnswerRe: Display Images on Page from Database Pin
Abhishek Sur14-Sep-09 0:55
professionalAbhishek Sur14-Sep-09 0:55 
QuestionSession Problem (Login View wrong display) Pin
specialdreamsin13-Sep-09 23:22
specialdreamsin13-Sep-09 23:22 
QuestionCookies not working Pin
amittinku13-Sep-09 23:10
amittinku13-Sep-09 23:10 
Hi,
Just a small code to check whether cookies are getting stored/retrived or not.
Check the code below:

protected void Button1_Click(object sender, EventArgs e)
{
Response.Cookies["userName"].Value = "patrick";

}
protected void Button2_Click(object sender, EventArgs e)
{
if (Request.Cookies["userName"] == null)
Label1.Text = "Cookie not found";
else
Label1.Text=Server.HtmlEncode(Request.Cookies["userName"].Value);

}
------------------------
When I try to retrieve the cookie values on button2_click, it is not retrieved although I have set the option "accept all cookies" in IE 6.
Where is issue?
AnswerRe: Cookies not working Pin
Abhishek Sur14-Sep-09 0:26
professionalAbhishek Sur14-Sep-09 0:26 
GeneralRe: Cookies not working Pin
amittinku14-Sep-09 0:41
amittinku14-Sep-09 0:41 
AnswerRe: Cookies not working Pin
amittinku14-Sep-09 2:14
amittinku14-Sep-09 2:14 
QuestionLive Video in Website Pin
Robymon13-Sep-09 21:30
Robymon13-Sep-09 21:30 
AnswerRe: Live Video in Website Pin
Abhishek Sur13-Sep-09 22:23
professionalAbhishek Sur13-Sep-09 22:23 
QuestionSession Sharing [modified] Pin
Satish3213-Sep-09 20:51
Satish3213-Sep-09 20:51 
AnswerRe: Session Sharing Pin
Abhishek Sur13-Sep-09 21:29
professionalAbhishek Sur13-Sep-09 21:29 
QuestionHow to Open new aspx page in same window Pin
Samarjeet Singh@india13-Sep-09 20:38
Samarjeet Singh@india13-Sep-09 20:38 
AnswerRe: How to Open new aspx page in same window Pin
Christian Graus13-Sep-09 20:42
protectorChristian Graus13-Sep-09 20:42 
AnswerRe: How to Open new aspx page in same window Pin
Aman Bhullar13-Sep-09 20:53
Aman Bhullar13-Sep-09 20:53 
GeneralRe: How to Open new aspx page in same window Pin
Samarjeet Singh@india13-Sep-09 21:33
Samarjeet Singh@india13-Sep-09 21:33 
GeneralRe: How to Open new aspx page in same window Pin
Aman Bhullar13-Sep-09 21:39
Aman Bhullar13-Sep-09 21:39 
GeneralRe: How to Open new aspx page in same window Pin
Abhishek Sur13-Sep-09 22:05
professionalAbhishek Sur13-Sep-09 22:05 
GeneralRe: How to Open new aspx page in same window Pin
Aman Bhullar13-Sep-09 22:46
Aman Bhullar13-Sep-09 22:46 
AnswerRe: How to Open new aspx page in same window Pin
Amit Patel198513-Sep-09 21:30
Amit Patel198513-Sep-09 21:30 
GeneralRe: How to Open new aspx page in same window Pin
Samarjeet Singh@india13-Sep-09 22:16
Samarjeet Singh@india13-Sep-09 22:16 
AnswerRe: How to Open new aspx page in same window Pin
Abhishek Sur13-Sep-09 21:35
professionalAbhishek Sur13-Sep-09 21:35 

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.