Click here to Skip to main content
15,884,176 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to set the start up page once for all Pin
Parwej Ahamad10-Oct-11 17:47
professionalParwej Ahamad10-Oct-11 17:47 
GeneralRe: how to set the start up page once for all Pin
MalarGayu10-Oct-11 22:10
MalarGayu10-Oct-11 22:10 
GeneralRe: how to set the start up page once for all Pin
Parwej Ahamad10-Oct-11 22:13
professionalParwej Ahamad10-Oct-11 22:13 
GeneralRe: how to set the start up page once for all Pin
MalarGayu11-Oct-11 11:41
MalarGayu11-Oct-11 11:41 
GeneralRe: how to set the start up page once for all Pin
Parwej Ahamad11-Oct-11 19:41
professionalParwej Ahamad11-Oct-11 19:41 
QuestionMicrosoft.Jet.OLEDB.4.0' provider is not registered on the local machine Pin
Anuradha Lakra9-Oct-11 23:37
Anuradha Lakra9-Oct-11 23:37 
AnswerRe: Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine Pin
Ali Al Omairi(Abu AlHassan)10-Oct-11 2:55
professionalAli Al Omairi(Abu AlHassan)10-Oct-11 2:55 
QuestionDatePicker using JQuery Pin
klaydze9-Oct-11 22:13
klaydze9-Oct-11 22:13 
Hi,

Im using datepicker using standalone jquery. The datepicker works perfectly in WebForm. Now i decided to use a site master on my sample project and I add some web content form also inside the site.master.

In my web content form i add search function with date range.

Now, the problem was, after using web content form, datepicker no longer showing the icon "..." beside my asp:textbox.

Please see below tags in my site.Master page.
XML
<asp:ScriptManager ID="ScriptManager1" runat="server">
    <Scripts>
        <asp:ScriptReference Path="~/scripts/datepickerjs/jquery-1.3.1.min.js" />
        <asp:ScriptReference Path="~/scripts/datepickerjs/jquery-ui-1.7.1.custom.min.js" />
        <asp:ScriptReference Path="~/scripts/datepickerjs/daterangepicker.jQuery.js" />
    </Scripts>
</asp:ScriptManager>


i also place the css in site.master inside the head tag.

XML
<link rel="Stylesheet" type="text/css" href="style/datepickercss/ui.daterangepicker.css" />
<link rel="Stylesheet" type="text/css" href="style/datepickercss/redmond/jquery-ui-1.7.1.custom.css" title="ui-theme" />


In my web content form i place the script after the asp:Content tag.

<script type="text/jscript">
    $(function() {
        $("#txtDateFrom").datepicker({
            changeMonth: true,
            changeYear: true,
            buttonText: 'Select Date From',
            buttonImage: 'images/calendar.gif',
            buttonImageOnly: true,
            showOn: 'button'
        });
    });

    $(function() {
        $("#txtDateTo").datepicker({
            changeMonth: true,
            changeYear: true,
            buttonText: 'Select Date To',
            buttonImage: 'images/calendar.gif',
            buttonImageOnly: true,
            showOn: 'button'
        });
    });
</script>



Finally, when i run my project the "..." is not showing. Normally, when i used web form this "..." will show and i can select a date, but now after switching to web content form, "..." is no longer visible.



Thanks
if(you type your code here) {
Messagebox.Show("You help me a lot!");
}
else {
You help me = null;
}

AnswerRe: DatePicker using JQuery Pin
bVagadishnu10-Oct-11 7:19
bVagadishnu10-Oct-11 7:19 
GeneralRe: DatePicker using JQuery Pin
klaydze10-Oct-11 15:19
klaydze10-Oct-11 15:19 
QuestionExport to excel Pin
padmanabhan N9-Oct-11 21:11
padmanabhan N9-Oct-11 21:11 
AnswerRe: Export to excel Pin
Ali Al Omairi(Abu AlHassan)9-Oct-11 23:19
professionalAli Al Omairi(Abu AlHassan)9-Oct-11 23:19 
GeneralRe: Export to excel Pin
padmanabhan N9-Oct-11 23:38
padmanabhan N9-Oct-11 23:38 
GeneralRe: Export to excel Pin
Ali Al Omairi(Abu AlHassan)10-Oct-11 2:49
professionalAli Al Omairi(Abu AlHassan)10-Oct-11 2:49 
QuestionThe state information is invalid for this page and might be corrupted. Pin
uspatel9-Oct-11 20:53
professionaluspatel9-Oct-11 20:53 
AnswerRe: The state information is invalid for this page and might be corrupted. Pin
Ankur\m/9-Oct-11 22:43
professionalAnkur\m/9-Oct-11 22:43 
GeneralRe: The state information is invalid for this page and might be corrupted. Pin
uspatel9-Oct-11 23:26
professionaluspatel9-Oct-11 23:26 
QuestionCustom controls Pin
pravin_mun9-Oct-11 20:29
pravin_mun9-Oct-11 20:29 
AnswerRe: Custom controls Pin
Ali Al Omairi(Abu AlHassan)9-Oct-11 23:23
professionalAli Al Omairi(Abu AlHassan)9-Oct-11 23:23 
Questionclick of a button in master page Pin
MalarGayu9-Oct-11 19:16
MalarGayu9-Oct-11 19:16 
AnswerRe: click of a button in master page Pin
Morgs Morgan9-Oct-11 23:47
Morgs Morgan9-Oct-11 23:47 
AnswerRe: click of a button in master page Pin
uspatel10-Oct-11 21:39
professionaluspatel10-Oct-11 21:39 
QuestionDisable checkbox in gridview if Cell 4 has KS value Pin
Member 32222649-Oct-11 15:41
Member 32222649-Oct-11 15:41 
Questionwhy ajax tap container does not appear in .Net 2010 but appear in 2008? Pin
ma.amer9-Oct-11 5:31
ma.amer9-Oct-11 5:31 
AnswerRe: why ajax tap container does not appear in .Net 2010 but appear in 2008? Pin
Paul Conrad9-Oct-11 16:33
professionalPaul Conrad9-Oct-11 16:33 

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.