Click here to Skip to main content
15,915,508 members
Home / Discussions / Web Development
   

Web Development

 
QuestionBest Javascript compressor / obfuscator Pin
Chris Maunder31-Jul-07 4:05
cofounderChris Maunder31-Jul-07 4:05 
AnswerRe: Best Javascript compressor / obfuscator Pin
Pete O'Hanlon31-Jul-07 10:36
mvePete O'Hanlon31-Jul-07 10:36 
GeneralRe: Best Javascript compressor / obfuscator Pin
Chris Maunder31-Jul-07 10:48
cofounderChris Maunder31-Jul-07 10:48 
GeneralRe: Best Javascript compressor / obfuscator Pin
Vasudevan Deepak Kumar1-Aug-07 22:55
Vasudevan Deepak Kumar1-Aug-07 22:55 
AnswerRe: Best Javascript compressor / obfuscator Pin
Johnny ²31-Jul-07 14:44
Johnny ²31-Jul-07 14:44 
QuestionAny one help to me? Pin
Pandian BE31-Jul-07 2:09
Pandian BE31-Jul-07 2:09 
AnswerRe: Any one help to me? Pin
Chris Maunder31-Jul-07 4:03
cofounderChris Maunder31-Jul-07 4:03 
QuestionForm authentication Pin
sandeep kumar pundhir30-Jul-07 20:15
sandeep kumar pundhir30-Jul-07 20:15 
Hi,
i am using Form Authentication in my asp.net appication. It creates a persistent cookie named Cookie1 in cookies folder at my system. I want to change/set the Name of this cookie to Cookie2 on the click of a button from page.How can i do that ? (Q: Does form authentication always created persistent cookie, how can i change it so that when i close the browser , the coookie also goes off ?)

Alternatly, if i can create a new form authentication cookie at the same place with the name Cookie2. i am using following code.But cannot see my cookie2 in the folder

protected void LinkButton2_Click(object sender, EventArgs e)
{
FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, "username", DateTime.Now, DateTime.Now.AddMinutes(30), true, FormsAuthentication.FormsCookiePath);
string encryptedTicket = FormsAuthentication.Encrypt(ticket);

HttpCookie authCookie = new HttpCookie("cookie2", encryptedTicket);
authCookie.Expires = System.DateTime.Now.AddMinutes(30);
authCookie.Secure = true;
Response.Cookies.Add(authCookie);
}
Any code support will be of great help.

Thx
AnswerRe: Form authentication Pin
T.EDY30-Jul-07 21:05
T.EDY30-Jul-07 21:05 
QuestionDesigning a form in aso.net Pin
tweety@net30-Jul-07 15:42
tweety@net30-Jul-07 15:42 
AnswerRe: Designing a form in aso.net Pin
Tarakeshwar Reddy31-Jul-07 9:31
professionalTarakeshwar Reddy31-Jul-07 9:31 
QuestionWEb.COnfig File Problem...!!! Pin
rashadaliarshad30-Jul-07 11:38
rashadaliarshad30-Jul-07 11:38 
AnswerRe: WEb.COnfig File Problem...!!! Pin
Paul Conrad30-Jul-07 12:34
professionalPaul Conrad30-Jul-07 12:34 
AnswerRe: WEb.COnfig File Problem...!!! Pin
Pete O'Hanlon31-Jul-07 10:39
mvePete O'Hanlon31-Jul-07 10:39 
QuestionRegarding webservices Pin
Bad Programmer30-Jul-07 9:23
Bad Programmer30-Jul-07 9:23 
AnswerRe: Regarding webservices Pin
led mike30-Jul-07 10:50
led mike30-Jul-07 10:50 
QuestionWrong SSL Error Pin
Tad McClellan30-Jul-07 6:58
professionalTad McClellan30-Jul-07 6:58 
AnswerRe: Wrong SSL Error Pin
Tad McClellan30-Jul-07 10:27
professionalTad McClellan30-Jul-07 10:27 
QuestionMessage Closed Pin
30-Jul-07 2:37
sonarat30-Jul-07 2:37 
AnswerQUIT IT Pin
leckey30-Jul-07 7:52
leckey30-Jul-07 7:52 
GeneralRe: QUIT IT Pin
Christian Graus30-Jul-07 11:21
protectorChristian Graus30-Jul-07 11:21 
AnswerRe: any one help me to crack maya Pin
Paul Conrad30-Jul-07 10:47
professionalPaul Conrad30-Jul-07 10:47 
GeneralRe: any one help me to crack maya Pin
Vasudevan Deepak Kumar30-Jul-07 18:31
Vasudevan Deepak Kumar30-Jul-07 18:31 
AnswerRe: any one help me to crack maya Pin
Christian Graus30-Jul-07 11:20
protectorChristian Graus30-Jul-07 11:20 
QuestionProblem in FireFox Pin
Ahsan kazmi30-Jul-07 2:00
Ahsan kazmi30-Jul-07 2: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.