小编hut*_*oid的帖子

Bootstrap灯箱.如何在自己的网站中使用简单的例子?

我正在尝试将Bootstrap Lightbox与我自己的twitter bootstrap网站集成.如何使用http://jbutz.github.com/bootstrap-lightbox/#demo中的示例

在我的代码?我需要导入什么?

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Template &middot; Bootstrap</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="">

    <!-- Le styles -->
    <link href="css/bootstrap.css" rel="stylesheet">
    <style type="text/css">
      body {
        padding-top: 20px;
        padding-bottom: 40px;
      }

      /* Custom container */
      .container-narrow {
        margin: 0 auto;
        max-width: 700px;
      }
      .container-narrow > hr {
        margin: 30px 0;
      }

    </style>
    <link href="css/bootstrap-responsive.css" rel="stylesheet">

    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
    <!--[if lt IE 9]> …
Run Code Online (Sandbox Code Playgroud)

html javascript twitter lightbox twitter-bootstrap

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

在VsVim中启用文本突出显示

我真的很喜欢Vim中用于搜索和Shift-的文本突出显示8。无论如何,是否可以在VS 2010或VS 2012的VsVim中启用它?

vim search highlight vsvim

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

ASP.NET MVC 3网站的日历

我有数据库与事件,现在需要在现场按月显示.您能否建议任何具有可自定义样式的免费组件来解决此问题?

asp.net asp.net-mvc timeline calendar asp.net-mvc-3

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

Configuration Manager未在app.config中保存

我有这个app.config:

<?xml version="1.0"?>
<configuration>
<configSections>
</configSections>
<connectionStrings>
  <add name="conexx" connectionString="Data Source=192.168.1.2 ;Initial Catalog   =ifdcontroladoria3 ;uid =sa;pwd = admin2012" providerName="System.Data.SqlClient" />
</connectionStrings>
<startup><supportedRuntime version="v4.0"   sku=".NETFramework,Version=v4.0,Profile=Client"/></startup></configuration>
Run Code Online (Sandbox Code Playgroud)

我试图用这个C#更新这个连接字符串:

  coneydstr = @"Data Source=" + comboBox1.Text + ";Initial Catalog =" + cmbBancos.Text + ";uid =" + txtUsuario.Text + ";pwd =" + txtPassword.Text;
        try
         { coneyd.ConnectionString = coneydstr; 
           coneyd.Open(); 
           funciona = true;
           lblStringSalida.Text = coneydstr;
         }
         catch (Exception ex)
        {  MessageBox.Show(coneyd + ex.Message.ToString());  }

        if (funciona)
        { 
          Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
          config.ConnectionStrings.ConnectionStrings["conexx"].ConnectionString = coneydstr;
          config.Save();   
        } …
Run Code Online (Sandbox Code Playgroud)

c# configurationmanager visual-studio-2010

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

如何获取在C#中插入的行的ID

我有一个完美的插入工作,但需要获取它刚刚插入的行的值.不知道我怎么做到这一点.试过一些东西......没用.这是我的INSERT:

//method to insert data
private void insertNewProject()
{
    using (dbPSREntities5 context = new dbPSREntities5())
    {
        //Create a new instance of the tbProject object
        tbProject proj = new tbProject {
            //Add new values to each fields
            ProjectContactInfo = txtContactPhone.Text,
            refDepartmentID = Convert.ToInt32(ddlDepartments.SelectedValue)
        };

       context.tbProjects.AddObject(proj);

       context.SaveChanges();

       id = (int)command.ExecuteScalar; <--- something like this but this doesn't work.
    }
}
Run Code Online (Sandbox Code Playgroud)

c# asp.net asp.net-mvc entity-framework asp.net-mvc-4

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

将类添加到ASP.NET MVC4项目

在ASP.NET MVC4项目中,我有一个名为App_Code的子目录(手动创建).它包含带有类的.cs文件.我在几个不同的.cshtml文件中使用这些类..cshtml文件按预期编译和工作.

我的类位于命名空间中:

namespace Foo {
    public class Bar {
        //  ... properties
    }
}
Run Code Online (Sandbox Code Playgroud)

我想在控制器中使用其中一个类:

using System;
// ...
using Foo;

namespace MyProject.Controllers
{
    public class MyController {
        Foo.Bar SelectedBar { get; set; }
    }
}
Run Code Online (Sandbox Code Playgroud)

当我这样做时,我得到一个编译器错误:

Error   3   The type or namespace name 'Foo' could not be found (are you missing a using directive or an assembly reference?)
Run Code Online (Sandbox Code Playgroud)

如果我将.cs文件移动到Controllers目录,那么.cshtml类不能"看到"它们.

如何向MVC4项目添加类?我应该创建第二个项目吗?

我多年来一直在做C#,但它们都是Windows Forms和XAML.使用ASP.NET,我在学习曲线上就像在冰鞋上的犀牛一样.

c# asp.net asp.net-mvc asp.net-mvc-3 asp.net-mvc-4

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

ASP.NET MVC4,将视图映射到具有多种具体类型的枚举

我遇到的一个问题如下:

通常我会从我们的CMS中有一个IEnumerable,它有多种类型,如下所示:

var headerNavigation = new List<IHeaderNav>() {
          new TextElement(),
          new TextElement(),
          new ImageElement()
};
Run Code Online (Sandbox Code Playgroud)

理想情况下,我想将headerNavigation传递给View,并让MVC根据模型的名称查找相应的视图.虽然我可以在我看来做这样的事情:

foreach (IHeaderNav element in Model)
{
    if (sth is TextElement)
    {
         @{ Html.RenderPartial("TextElement", element);  }
    }

    // etc...
}
Run Code Online (Sandbox Code Playgroud)

如果我刚刚传递return View(Model)并且按照约定完成视图和类型名称的循环和匹配会更好.这是否融入MVC,我不知道它?或者有一个贡献项目,这样做?这一般的方法是什么?重写视图引擎?

c# asp.net asp.net-mvc asp.net-mvc-3 asp.net-mvc-4

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

Razor中的函数和帮助程序有什么区别?

从我读过的教程中,函数总是包含C#代码.总是如此,或者我们可以在函数中使用Razor语法吗?另一方面,我们可以在帮助程序中使用C#代码吗?

c# asp.net asp.net-mvc razor

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

Thymeleaf:URL中的参数未被替换

我正在努力学习Spring MVC和Thymeleaf.我有以下HTML部分打印出一个链接和一个按钮:

<ul th:each="item : ${typesMap}">
  <li>
    <a href="roomdetails.html" th:href="@{/roomdetails/${item.key}/${item.value}}">Linky</a>
    <button type="button" th:text="${item.value}">Button Text</button>
  </li>
</ul>
Run Code Online (Sandbox Code Playgroud)

在这两个示例中,链接中的参数永远不会被替换.我总是最终roomdetails/${item.key}/${item.value}得到HTML中的一些东西.该按钮工作正常,并将显示在循环的每次迭代中在$ {item.value}中找到的文本.

有谁知道为什么我不能以我想要的格式获取URL?从我所看到的,我正在做文档告诉我的内容.

java spring-mvc thymeleaf

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

如何使用配置转换删除 web.config 中的模块

我的 web.config 的一部分如下所示:

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true">
    <remove name="WebDAVModule" />
    <add name="ImageResizingModule" type="ImageResizer.InterceptModule" />
    <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" />
    <add name="Prerender" type="Prerender.io.PrerenderModule, Prerender.io, Version=1.0.0.2, Culture=neutral, PublicKeyToken=null" />
</modules>
Run Code Online (Sandbox Code Playgroud)

我想摆脱这条线

我已经尝试过了,但它摆脱了除 WebDav 之外的所有内容

<system.webServer>
<rewrite xdt:Transform="Replace">
  <rules>
  </rules>
</rewrite>
<modules runAllManagedModulesForAllRequests="true">
  <add name="Prerender" type="Prerender.io.PrerenderModule, Prerender.io, Version=1.0.0.2, Culture=neutral, PublicKeyToken=null" 
       xdt:Transform="RemoveAll" />
</modules
Run Code Online (Sandbox Code Playgroud)

asp.net web-config web.config-transform

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