Click here to Skip to main content
15,900,589 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to download data to client side ??? Pin
md_azy4-Mar-08 1:38
md_azy4-Mar-08 1:38 
GeneralRe: How to download data to client side ??? Pin
Laddie4-Mar-08 2:08
Laddie4-Mar-08 2:08 
AnswerRe: How to download data to client side ??? Pin
Muhammad Gouda4-Mar-08 2:31
Muhammad Gouda4-Mar-08 2:31 
GeneralAsp Pin
Bonsta4-Mar-08 1:18
Bonsta4-Mar-08 1:18 
GeneralRe: Asp Pin
eyeseetee4-Mar-08 2:21
eyeseetee4-Mar-08 2:21 
GeneralCalendar in Div Pin
.NET- India 4-Mar-08 1:03
.NET- India 4-Mar-08 1:03 
GeneralRe: Calendar in Div Pin
eyeseetee4-Mar-08 2:22
eyeseetee4-Mar-08 2:22 
GeneralRe: Calendar in Div Pin
.NET- India 4-Mar-08 18:31
.NET- India 4-Mar-08 18:31 
Here is My Content Page Code given below if you put this code in a simple web form then it works fine........Please let me know what mistake i am making

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<script language="javascript">
function showCalendar(divSelectDate)
{
e=document.getElementById(divSelectDate);
if(e.style.display=="none")
{
e.style.display="block";
}
else
{
e.style.display="none";
}
}
</script>
<a href="#" onclick="showCalendar('divSelectDate');" title="Click Here To Select Start Date">Select</a>
<div id="divSelectDate" runat="server" style="display:none;">
<asp:Calendar ID="selectCalendar" runat="server" BackColor="White" BorderColor="#999999" CellPadding="4" DayNameFormat="Shortest" Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" Height="180px" Width="200px">
<SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White" />
<TodayDayStyle BackColor="#CCCCCC" ForeColor="Black" />
<SelectorStyle BackColor="#CCCCCC" />
<WeekendDayStyle BackColor="#FFFFCC" />
<OtherMonthDayStyle ForeColor="#808080" />
<NextPrevStyle VerticalAlign="Bottom" />
<DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt" />
<TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True" />
</asp:Calendar>
</div>

</asp:Content>
QuestionListBox Problem Pin
zeeShan anSari4-Mar-08 0:25
zeeShan anSari4-Mar-08 0:25 
GeneralRe: ListBox Problem Pin
eyeseetee4-Mar-08 0:28
eyeseetee4-Mar-08 0:28 
GeneralRe: ListBox Problem Pin
zeeShan anSari4-Mar-08 7:06
zeeShan anSari4-Mar-08 7:06 
AnswerRe: ListBox Problem Pin
zeeShan anSari5-Mar-08 1:10
zeeShan anSari5-Mar-08 1:10 
QuestionSys is undefined error in ajax Pin
Soumini Ramakrishnan4-Mar-08 0:25
Soumini Ramakrishnan4-Mar-08 0:25 
GeneralRe: Sys is undefined error in ajax Pin
eyeseetee4-Mar-08 0:27
eyeseetee4-Mar-08 0:27 
GeneralRe: Sys is undefined error in ajax Pin
Soumini Ramakrishnan4-Mar-08 0:42
Soumini Ramakrishnan4-Mar-08 0:42 
GeneralRe: Sys is undefined error in ajax Pin
eyeseetee4-Mar-08 0:50
eyeseetee4-Mar-08 0:50 
GeneralRe: Sys is undefined error in ajax Pin
Not Active4-Mar-08 4:44
mentorNot Active4-Mar-08 4:44 
GeneralRe: Sys is undefined error in ajax Pin
Selahattin Bostanci4-Mar-08 1:04
Selahattin Bostanci4-Mar-08 1:04 
GeneralRe: Sys is undefined error in ajax Pin
Not Active4-Mar-08 4:47
mentorNot Active4-Mar-08 4:47 
GeneralRe: Sys is undefined error in ajax Pin
ChrisKo4-Mar-08 6:20
ChrisKo4-Mar-08 6:20 
GeneralRe: Sys is undefined error in ajax Pin
Soumini Ramakrishnan5-Mar-08 22:12
Soumini Ramakrishnan5-Mar-08 22:12 
Generalgridview problem url Pin
eyeseetee4-Mar-08 0:04
eyeseetee4-Mar-08 0:04 
GeneralRe: gridview problem url Pin
Christian Graus4-Mar-08 9:33
protectorChristian Graus4-Mar-08 9:33 
QuestionHow to get member system login information from windows 2003 ADS server in asp.net Pin
BibhuPrasad4-Mar-08 0:03
BibhuPrasad4-Mar-08 0:03 
AnswerRe: How to get member system login information from windows 2003 ADS server in asp.net Pin
Christian Graus4-Mar-08 9:34
protectorChristian Graus4-Mar-08 9:34 

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.