Click here to Skip to main content
15,888,330 members
Home / Discussions / C#
   

C#

 
GeneralRe: Getting rid of extra click... Pin
Danish Samil18-Feb-14 10:41
Danish Samil18-Feb-14 10:41 
AnswerRe: Getting rid of extra click... Pin
TnTinMn18-Feb-14 12:52
TnTinMn18-Feb-14 12:52 
GeneralRe: Getting rid of extra click... Pin
Danish Samil18-Feb-14 19:15
Danish Samil18-Feb-14 19:15 
QuestionHow to Implement the Search Engine(like google,bing, yahoo, etc.,) using C#? Pin
Anand Gunasekaran17-Feb-14 20:49
professionalAnand Gunasekaran17-Feb-14 20:49 
AnswerRe: How to Implement the Search Engine(like google,bing, yahoo, etc.,) using C#? Pin
Pete O'Hanlon17-Feb-14 20:52
mvePete O'Hanlon17-Feb-14 20:52 
GeneralRe: How to Implement the Search Engine(like google,bing, yahoo, etc.,) using C#? Pin
Anand Gunasekaran17-Feb-14 21:06
professionalAnand Gunasekaran17-Feb-14 21:06 
GeneralRe: How to Implement the Search Engine(like google,bing, yahoo, etc.,) using C#? Pin
Pete O'Hanlon17-Feb-14 21:12
mvePete O'Hanlon17-Feb-14 21:12 
AnswerRe: How to Implement the Search Engine(like google,bing, yahoo, etc.,) using C#? Pin
OriginalGriff17-Feb-14 21:01
mveOriginalGriff17-Feb-14 21:01 
GeneralRe: How to Implement the Search Engine(like google,bing, yahoo, etc.,) using C#? Pin
Anand Gunasekaran17-Feb-14 21:14
professionalAnand Gunasekaran17-Feb-14 21:14 
GeneralRe: How to Implement the Search Engine(like google,bing, yahoo, etc.,) using C#? Pin
Shameel17-Feb-14 22:26
professionalShameel17-Feb-14 22:26 
AnswerRe: How to Implement the Search Engine(like google,bing, yahoo, etc.,) using C#? Pin
Shameel18-Feb-14 2:55
professionalShameel18-Feb-14 2:55 
QuestionConvert "\\r\\n" into "\r\n" Pin
Ashfaque Hussain17-Feb-14 20:00
Ashfaque Hussain17-Feb-14 20:00 
AnswerRe: Convert "\\r\\n" into "\r\n" Pin
Kornfeld Eliyahu Peter17-Feb-14 20:06
professionalKornfeld Eliyahu Peter17-Feb-14 20:06 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Ashfaque Hussain17-Feb-14 23:02
Ashfaque Hussain17-Feb-14 23:02 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Kornfeld Eliyahu Peter17-Feb-14 23:19
professionalKornfeld Eliyahu Peter17-Feb-14 23:19 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Ashfaque Hussain17-Feb-14 23:57
Ashfaque Hussain17-Feb-14 23:57 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Kornfeld Eliyahu Peter18-Feb-14 0:01
professionalKornfeld Eliyahu Peter18-Feb-14 0:01 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Ashfaque Hussain18-Feb-14 0:39
Ashfaque Hussain18-Feb-14 0:39 
AnswerRe: Convert "\\r\\n" into "\r\n" Pin
Pete O'Hanlon17-Feb-14 20:50
mvePete O'Hanlon17-Feb-14 20:50 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Ashfaque Hussain17-Feb-14 22:58
Ashfaque Hussain17-Feb-14 22:58 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Ashfaque Hussain18-Feb-14 0:35
Ashfaque Hussain18-Feb-14 0:35 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Ashfaque Hussain19-Feb-14 1:43
Ashfaque Hussain19-Feb-14 1:43 
GeneralRe: Convert "\\r\\n" into "\r\n" Pin
Pete O'Hanlon19-Feb-14 3:09
mvePete O'Hanlon19-Feb-14 3:09 
AnswerRe: Convert "\\r\\n" into "\r\n" Pin
Anand Gunasekaran17-Feb-14 21:33
professionalAnand Gunasekaran17-Feb-14 21:33 
QuestionDatetime can't be change to other format [dd/MM/yyyy] to [MM/dd/yyyy],[yyyy/MM/dd],... like that I am Jquery in asp.net,c# Pin
pkarthionline17-Feb-14 17:51
pkarthionline17-Feb-14 17:51 
Hi,
Datetime can't be change to other format [dd/MM/yyyy] to [MM/dd/yyyy],[yyyy/MM/dd],... like that

<pre lang="text">
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="JqueryDate.aspx.cs" Inherits="DtPicker.JqueryDate" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head >
<title></title>
<script src="Scripts/jquery-1.7.1.min.js"></script>
<script src="Scripts/jquery.jdpicker.js"></script>
<link href="Scripts/jdpicker.css" rel="stylesheet" />

</head>
<script type="text/javascript">
// $(document).ready(function () {

// });

$("#Country").change(function () {
var ddl_value = $('#Country').val();
//$("#test1").val(ddl_value);
$("#dt").val(ddl_value);
location.reload(); // datepicker select to reload
})


$('#dt').jdPicker({
date_format: $("#dt").val()
//date_format:"MM dd YYYY"
})

</script>
<body>
<form id="form1" runat="server">
<select id="Country">
<option value="dd/mm/YYYY">Ind dd/mm/YYYY</option>
<option value="FF dd YYYY">Russia FF dd YYYY</option>
<option value="dd MM YYYY">Qatar dd MM YYYY</option>
<option value="MM dd YYYY">Japan MM dd YYYY</option>
<option value="dd FF YYYY">Singapore dd FF YYYY</option>
<option value="YYYY/mm/dd">Canada YYYY/mm/dd</option>
</select>
<div class="jdpicker_w">
<p>Date:<input type="text" id="dt" size="30" class="jdpicker"/></p>
</div>
</form>
</body>
</html>

</pre>




//=================================================================================================
// JS file
//=================================================================================================

http://jdpicker.paulds.fr/?p=demo

I am using this datetime picker.

how to solve this issue?


Thanks,
Karthikeyan,Bangalore

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.