小编Rah*_*ani的帖子

将C#中的DateTime转换为yyyy-MM-dd格式并将其存储到MySql DateTime字段

我正在尝试将DateTime格式转换为yyyy-MM-dd格式并将其存储到DateTime对象.但它给了我的系统DateTime格式MM/dd/yyyy.
我正在使用以下代码进行转换.

string dateTime = DateTime.Now.ToString();
string createddate = Convert.ToDateTime(dateTime).ToString("yyyy-MM-dd h:mm tt");         
DateTime dt = DateTime.ParseExact(createddate, "yyyy-MM-dd h:mm tt",CultureInfo.InvariantCulture);
Run Code Online (Sandbox Code Playgroud)

但上述行的非转换为指定的格式.
任何人都可以帮助解决这个问题.

我从一个应用程序获取DateTime并将此对象传递给其他应用程序,该应用程序将该日期存储到MySql的DateTime字段中,格式为"yyyy-MM-dd".
这就是我发布这个问题的原因.

项目1有类,我得到了日期.处理器类是应用程序的中间件,它处理DateTime格式以特定格式转换.并传递给使用DateTime的Other项目并将其存储在MySql字段中.

c# mysql datetime date

41
推荐指数
5
解决办法
28万
查看次数

使用C#将Word文件页面转换为jpg图像

如何将word文档页面转换为特定图像?

我使用以下代码将其转换为.tiff图像

object varMissing = Type.Missing;

object varFalseValue = false;
object varTrueValue = true;

Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
word.ActivePrinter = "Microsoft XPS Document Writer";
object fileName = startupPath + "\\" + filename1;
object falseValue = false;
object trueValue = true;
object missing = Type.Missing;
word.Visible = true;
word.Activate();
Document doc = word.Documents.Open(ref fileName, ref missing,
                    ref falseValue, ref missing, ref missing, ref missing,
                    ref missing, ref missing, ref missing, ref missing,
                    ref missing, ref missing, ref missing, …
Run Code Online (Sandbox Code Playgroud)

c# ms-word image

5
推荐指数
1
解决办法
2万
查看次数

如何对 DirectoryInfo.GetFiles() 进行排序

我正在以编程方式创建 PowerPoint 文件的图像。将图像保存到本地驱动器后,我使用DirectoryInfo.GetFiles().
我正在保存带有序列号的图像文件。

我的文件: 在此处输入图片说明

我的问题是当我得到文件时,不在我需要的顺序中。我得到的文件顺序FileInfo[]是:

在此处输入图片说明

任何人都可以帮我解决这个问题吗?

c# sorting fileinfo

5
推荐指数
2
解决办法
8971
查看次数

如何使用Jquery检索Sharepoint List数据

我正在尝试使用Jquery检索列表数据.但我得到的整个列表Html页面不是列表中的值.Jquery代码如下

<script src="../_layouts/15/SharePointProject1/Scripts/jquery-1.3.2.js"></script>
<script language = "javascript" type="text/javascript">
    function GetAnnouncementData() {
        var soapPacket = "<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'> \
   <soapenv:Body> \
    <GetListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'> \
     <listName>Temp</listName> \
     <viewFields> \
      <ViewFields> \
        <FieldRef Name='Title' /> \
      </ViewFields> \
     </viewFields> \
    </GetListItems> \
   </soapenv:Body> \
  </soapenv:Envelope>";
        jQuery.ajax({
            url: "http://serverName/Lists/Temp/listsView.aspx",
            type: "POST",
            dataType: "xml",
            data: soapPacket,
            complete: processResult,
            contentType: "text/xml; charset=\"utf-8\""
        });
    }

    function processResult(xData, status) {
        //jQuery(xData.responseXML).find("z\\:row").each(function () {
        //    $("<li>" + $(this).attr("ows_Title") + "</li>").appendTo("#AnnouncementData");
        //});
        //alert($(this).attr("ows_Title"));
        alert(xData.responseText);
        //alert(status.toString());
        document.getElementById("tarea").value = xData.responseText;
        document.getElementById("div1").innerHTML = xData.responseText; …
Run Code Online (Sandbox Code Playgroud)

javascript sharepoint jquery sharepoint-2013

4
推荐指数
1
解决办法
4万
查看次数

在Windows Server 2012上安装AppFabric 1.1给出错误

我正在尝试安装AppFabric 1.1在我身上,Windows Server 2012但它没有安装.它给出了错误.

AppFabric installation failed because installer MSI returned with error code:1603
Run Code Online (Sandbox Code Playgroud)

已创建的日志文件如下所示.

2013-03-05 18:06:29, Information           Setup  ===== Logging started: 2013-03-05 18:06:29+05:30 =====
2013-03-05 18:06:29, Information           Setup  File:             c:\338f6462408072c851cf3b1e\setup.exe
2013-03-05 18:06:29, Information           Setup  InternalName:     Setup.exe
2013-03-05 18:06:29, Information           Setup  OriginalFilename: Setup.exe
2013-03-05 18:06:29, Information           Setup  FileVersion:      1.1.2106.32
2013-03-05 18:06:29, Information           Setup  FileDescription:  Setup.exe
2013-03-05 18:06:29, Information           Setup  Product:          Microsoft(R) Windows(R) Server AppFabric
2013-03-05 18:06:29, Information           Setup  ProductVersion:   1.1.2106.32
2013-03-05 18:06:29, Information           Setup  Debug:            False …
Run Code Online (Sandbox Code Playgroud)

installation appfabric sharepoint-2013 windows-server-2012

4
推荐指数
2
解决办法
1万
查看次数