Tag: asp.net

重新生成designer.cs

我刚从一个aspx页面删除了一个designer.cs文件..(不要问我该怎么做..你真的不想知道..)这是一种方法来重新生成aspx页面的文件? 我希望像“右键单击/生成devise器”存在,但事实并非如此.. 🙁 所以谢谢,如果有人有一个想法..

重写一个静态方法

我通过inheritanceRolesService来扩展一个新类。 在RolesService中,我有一个静态方法,我想在新派生类中重写。 当我从派生对象进行调用时,它不使用重载的静态方法,它实际上调用基类方法。 有任何想法吗? public class RolesService : IRolesService { public static bool IsUserInRole(string username, string rolename) { return Roles.IsUserInRole(username, rolename); } } public class MockRoleService : RolesService { public new static bool IsUserInRole(string username, string rolename) { return true; } }

如何仅将DataTable中的列复制到另一个DataTable?

如何仅将DataTable中的列复制到另一个DataTable?

如何从静态类中提高自定义事件

我有一个静态类,我想提出一个事件作为该类的静态方法内的try catch块的一部分。 例如在这个方法中,我想提出一个自定义事件的捕获。 public static void saveMyMessage(String message) { try { //Do Database stuff } catch (Exception e) { //Raise custom event here } } 谢谢。

无法加载文件或程序集“Microsoft.ReportViewer.WebForms”

我正在尝试在asp.net中使用报表查看器并上传了我的网站。 但是,当我的页面包含报告查看器加载时,它显示以下错误: 无法加载文件或程序集“Microsoft.ReportViewer.WebForms,版本= 11.0.0.0,文化=中立,PublicKeyToken = 89845dcd8080cc91”或其依赖项之一。 定位的程序集清单定义与程序集引用不匹配。 (来自HRESULT的exception:0x80131040) 这是我第一次部署ASP.NET网站,所以我不确定是什么问题。

C#根据foreach中的if语句转到列表中的下一个项目

我正在使用C#。 我有一个项目列表。 我使用foreach循环每个项目。 在我的foreach里面,我有很多if语句来检查一些东西。 如果这些if语句中的任何一个返回false,那么我希望它跳过该项目并转到列表中的下一个项目。 所有if后面的陈述应该被忽略。 我尝试了一个rest,但rest退出整个foreach语句。 这是我现在有: foreach (Item item in myItemsList) { if (item.Name == string.Empty) { // Display error message and move to next item in list. Skip/ignore all validation // that follows beneath } if (item.Weight > 100) { // Display error message and move to next item in list. Skip/ignore […]

如何为长时间运行的查询增加executionTimeout?

在我的应用程序中,一个查询需要3分钟才能执行。 我发现默认ExecutionTimeout值是110秒 。我试图将其更改为500(秒),但它并没有解决我的问题。 在某处我发现设置<compilation debug="false">允许configurationExecutionTimeout属性。 但是,即使这并没有解决我的问题。 有谁知道我可以如何增加长时间运行查询的执行超时?

如何使用jquery设置单选button选定的值

如何在javascript中设置单选button的select值: HTML代码: <input type="radio" name="RBLExperienceApplicable" class="radio" value="1" > <input type="radio" name="RBLExperienceApplicable" class="radio" value="0" > <input type="radio" name="RBLExperienceApplicable2" class="radio" value="1" > <input type="radio" name="RBLExperienceApplicable2" class="radio" value="0" > ASPX代码 <asp:RadioButtonList ID="RBLExperienceApplicable" runat="server" class="radio" RepeatDirection="Horizontal" EnableViewState="false"> <asp:ListItem Value="1" Text="Yes &nbsp;&nbsp;"></asp:ListItem> <asp:ListItem Value="0" Text="No"></asp:ListItem> </asp:RadioButtonList> <asp:RadioButtonList ID="RBLExperienceApplicable2" runat="server" class="radio" RepeatDirection="Horizontal" EnableViewState="false"> <asp:ListItem Value="1" Text="Yes &nbsp;&nbsp;"></asp:ListItem> <asp:ListItem Value="0" Text="No"></asp:ListItem> </asp:RadioButtonList> […]

为什么不能在MVC4 Razor布局文件中识别@Scripts和@Styles命令?

下面的MVC4 Razor布局文件加载了在Bundle.config中创build的几个脚本和css包。 <!DOCTYPE html> <html class="no-js" lang="en"> <head> <meta charset="utf-8" /> <title>XXX Beta</title> @Scripts.Render( "~/bundles/bundle_jquery", "~/bundles/bundle_modernizr", "~/bundles/bundle_foundation", "~/bundles/bundle_jhs") @Styles.Render( "~/Content/bundle_foundation", "~/Content/bundle_jhs") @RenderSection("pageHeadContent", false) </head> <body> <div id="bodyContainer"> @Html.Partial("Partial/_header") <div id="contentContainer"> <div id="mainContentContainer"> <div id="sidebarContainer"> @RenderSection("sidebarContent", required: true) </div> @RenderBody() </div> <div class="clearBoth"> </div> </div> @Html.Partial("Partial/_footer") </div> </body> </html> 页面呈现时出现以下错误。 出于某种原因,@Scripts和@Styles命令不被识别。 如果我在文件中键入“@Scripts”,则Intellisense不显示/显示该命令。 该项目确实引用了在Bundle.config中使用的System.Web.Optimization。 什么可能导致@Scripts和@Styles命令不被识别? “/”应用程序中的服务器错误。 编译错误 […]

为什么GET方法比POST更快?

我只是新的networking编程,只是想知道abt获取和发布数据从一个页面到另一个页面的方法。 据说Get方法比Post方法快,但是我不知道为什么我能find的一个原因是Get只带了255个字符? 有什么其他的原因,请有人解释我?