Click here to Skip to main content
15,893,722 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
(1) I have two Checkbox id like----Check1 and Check2. after checked and other textboxes fieldup i am sending mail that page. what i want to do is when user view the page in mail checkbox should beviewed in place where that was while fill. please some one help me to get the solution.
(2) Another problem is i am catching systemdate which not showing in proper format.like showing in 14\09\2010 and i want in 14/09/2010.
(3) and lastone i used ajax for calender but calender not showing.....
please someone help me....i am sending both .aspx and codebehind page....

====================
From JSOP

I deleted your code because you posted too much code that doesn't have anything to do with your actual problem. Post less code, and be sure it's the code you're having problems with. And learn how to use pre tags.
Posted
Updated 14-Sep-10 4:55am
v2
Comments
Sunasara Imdadhusen 14-Sep-10 10:43am    
Please provide proper formatted code. please use
 tag
Sandeep Mewara 14-Sep-10 11:43am    
Dont send full codes - only important snippets.

1 solution

To answer #3, you need to make sure to add a ToolkitScriptManager. Without that, no Ajax controls will work. See here: Display a Simple Popup Calendar[^]

As far as #2, it probably has to do with your UICulture. Before setting the system date, try changing your Culture and UICulture. You can do that easily by doing:
C#
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");

You just need to add
C#
using System.Threading;
using System.Globalization;


As far as #1, I have no idea what you're asking. I assume English is not your first language because it makes no sense in English.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900