Click here to Skip to main content
15,894,343 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to read pdf file.... Pin
raj23136223-Apr-09 20:39
raj23136223-Apr-09 20:39 
AnswerRe: how to read pdf file.... [modified] Pin
tom57200723-Apr-09 22:09
tom57200723-Apr-09 22:09 
GeneralRe: how to read pdf file.... Pin
raj23136223-Apr-09 22:39
raj23136223-Apr-09 22:39 
AnswerRe: how to read pdf file.... Pin
tom57200723-Apr-09 23:52
tom57200723-Apr-09 23:52 
GeneralRe: how to read pdf file.... Pin
raj23136224-Apr-09 0:05
raj23136224-Apr-09 0:05 
QuestionShow progress bar Pin
Yogesh Tayade23-Apr-09 20:10
Yogesh Tayade23-Apr-09 20:10 
AnswerRe: Show progress bar Pin
Christian Graus23-Apr-09 20:12
protectorChristian Graus23-Apr-09 20:12 
QuestionCookies storing Problem in C# Pin
gopinathtamil23-Apr-09 19:49
gopinathtamil23-Apr-09 19:49 
public void GetCookie()
{
string subkeyName,subkeyValue;
string str = null;
str = Request.QueryString["productid"];
Addtocart.Value = str;
Addtocart.Expires = DateTime.Now.AddDays(1);
Response.Cookies.Add(Addtocart);
for (int i = 0; i < Request.Cookies.Count; i++)
{
AppCookie = Request.Cookies[i];
output.Append("Name = " + AppCookie.Name + "
");
if (AppCookie.HasKeys)
{
for (int j = 0; j < AppCookie.Values.Count; j++)
{
subkeyName = Server.HtmlEncode(AppCookie.Values.AllKeys[j]);
subkeyValue = Server.HtmlEncode(AppCookie.Values[j]);
output.Append("Subkey name = " + subkeyName + "
");
output.Append("Subkey value = " + subkeyValue +
"

");
}
}
else
{
output.Append("Value = " + Server.HtmlEncode(AppCookie.Value) +
"

");
}
}
CacheMsg.Text = output.ToString();

}


Through above coding we try to store more than two cookies but we didn't achieved.....so is there any way to store more then two cookies
QuestionPublish : Setup is not working on client machine Pin
ddravin200023-Apr-09 19:33
ddravin200023-Apr-09 19:33 
AnswerRe: Publish : Setup is not working on client machine Pin
Abhijit Jana23-Apr-09 20:04
professionalAbhijit Jana23-Apr-09 20:04 
GeneralRe: Publish : Setup is not working on client machine Pin
ddravin200023-Apr-09 20:54
ddravin200023-Apr-09 20:54 
Questionretrive image local path from web handler Pin
LiYS23-Apr-09 17:20
LiYS23-Apr-09 17:20 
AnswerRe: retrive image local path from web handler Pin
Christian Graus23-Apr-09 20:22
protectorChristian Graus23-Apr-09 20:22 
QuestionHow To Capture The Whole ClientZone Of Window With The Scroll Pin
wangxuekong23-Apr-09 16:19
wangxuekong23-Apr-09 16:19 
QuestionHttpWebRequest and HttpWebResponse Pin
AndieDu23-Apr-09 15:25
AndieDu23-Apr-09 15:25 
QuestionAny news when LINQ be able to talk to Oracle/MySQL Pin
devvvy23-Apr-09 15:05
devvvy23-Apr-09 15:05 
QuestionOperator | | Pin
ctreed72823-Apr-09 13:38
ctreed72823-Apr-09 13:38 
AnswerRe: Operator | | Pin
Luc Pattyn23-Apr-09 14:59
sitebuilderLuc Pattyn23-Apr-09 14:59 
GeneralRe: Operator | | Pin
ctreed72823-Apr-09 15:17
ctreed72823-Apr-09 15:17 
GeneralRe: Operator | | Pin
Luc Pattyn23-Apr-09 15:21
sitebuilderLuc Pattyn23-Apr-09 15:21 
GeneralRe: Operator | | Pin
ctreed72823-Apr-09 16:14
ctreed72823-Apr-09 16:14 
QuestionRe: Operator | | Pin
CPallini23-Apr-09 21:45
mveCPallini23-Apr-09 21:45 
AnswerRe: Operator | | Pin
PIEBALDconsult24-Apr-09 4:01
mvePIEBALDconsult24-Apr-09 4:01 
Questionsending SMS from PC through USB port Pin
invisible_eagle23-Apr-09 12:43
invisible_eagle23-Apr-09 12:43 
AnswerRe: sending SMS from PC through USB port Pin
akyriako7824-Apr-09 1:45
akyriako7824-Apr-09 1:45 

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.