- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在处理一个使用母版页的 ASP.NET (C#) Web 项目。
我正在寻找一种在每次加载页面时显示随机客户报价的简单方法。
因为这是一个相当简单的 Web 项目,所以我不想将引号存储在数据库中。目前该项目不需要数据库连接,所以我希望尽可能简单——也许将引号存储在 XML 文件中,然后使用 XmlTextReader 读取文件?
如有任何建议,我们将不胜感激。
谢谢
编辑:我需要存储并提取报价和报价的客户名称。
最佳答案
使用 LINQ 可以像这样简单:
XElement xml = new XElement("quotes",
new XElement("quote",
new XElement("customer", "Customer #1"),
new XElement("text", "Quote #1")),
new XElement("quote",
new XElement("customer", "Customer #2"),
new XElement("text", "Quote #2")),
new XElement("quote",
new XElement("customer", "Customer #3"),
new XElement("text", "Quote #3")),
new XElement("quote",
new XElement("customer", "Customer #4"),
new XElement("text", "Quote #4")),
new XElement("quote",
new XElement("customer", "Customer #5"),
new XElement("text", "Quote #5"))
);
//XElement xml = XElement.Load("filename"); // use file instead of above
var result = xml.Elements()
.OrderBy(r => System.Guid.NewGuid())
.Select(element => new {
Customer = element.Element("customer").Value,
Quote = element.Element("text").Value
})
.First();
Console.WriteLine("{0} : {1}", result.Customer, result.Quote);
您的文件结构如下:
<quotes>
<quote>
<customer>Customer #1</customer>
<text>Quote #1</text>
</quote>
<quote>
<customer>Customer #2</customer>
<text>Quote #2</text>
</quote>
<quote>
<customer>Customer #3</customer>
<text>Quote #3</text>
</quote>
<quote>
<customer>Customer #4</customer>
<text>Quote #4</text>
</quote>
<quote>
<customer>Customer #5</customer>
<text>Quote #5</text>
</quote>
</quotes>
您将使用 XElement xml = XElement.Load("filename");
对于上面的xml
变量,之前的代码使用方式相同(注释掉的代码)。
Guid
有效,但您也可以在类中定义一个静态随机变量:public static Random rand = new Random();
然后将代码更改为:
int count = xml.Elements().Count();
var randomQuote = xml.Elements()
.OrderBy(i => rand.Next(0, count))
.Select(element => new {
Customer = element.Element("customer").Value,
Quote = element.Element("text").Value
})
.First();
Console.WriteLine("{0} : {1}", result.Customer, result.Quote);
关于c# - 在 asp.net 网页上显示随机报价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2142589/
F#中的“引号”是什么,它们的用途是什么? 最佳答案 In short, a quotation is metadata that represents the code of a particula
有人可以解释一下,为什么我可以使用 $1两次得到不同的结果? perl -wle '"ok" =~ /(.*)/; sub { "huh?" =~ /(.*)/; print for @_ }->(
我正在尝试向迷你购物车 block 添加一个 block (按钮):要么到 name="cart_sidebar"或者最好是 name="topCart.extra_actions"因为它自动呈现它的
我尝试做一些事情并尝试弄清楚。我只想向单击的 div 添加一个类。如果单击 div 号 1,然后单击 div 号 2,则该类将从 div1 中删除并添加到 div2 中。希望您能理解。 这是一个cod
我正在创建一个执行以下操作的 magento 支付扩展程序: 当用户在商家网站上点击结账时,他会被重定向到一个网站(如 paypal),并在该网站上输入他的支付数据。如果付款方式失败,用户将被重定向到
我正在开发一个自定义忠诚度积分模块。在结账期间,客户可以选择兑换积分。 在模块设置中,我创建了一个redeem_points eav_attribute(它存在于eav_attribute 表中),并
我目前正在做一个小项目,我需要对以下场景进行建模: 场景 客户打来电话,他想要一辆新车的报价。 销售代表。注册客户信息。 销售代表。在系统中创建报价,并将项目添加到报价(汽车)。 销售代表。通过电子邮
在 Elixir 中,什么时候应该使用 Macro.escape/1 而不是 quote/1?我看过beginner's guide但这没有帮助。 最佳答案 quote/2返回 abstract sy
我不明白什么是报价单。有人可以详细回答什么是 magento 报价、它们存储的数据、它们的生命周期和其他相关信息吗? 编辑:请注意区别:Magento vs Magneto。还有“magento”和“
我有一个 Terraform 脚本,它基于 Azure 市场中的此镜像在 Azure 上创建虚拟机: https://azuremarketplace.microsoft.com/en-us/mark
我正在尝试使用 JavaScript 重新创建(或“伪造”)Skype 报价。因此,我需要将 XML 字符串推送到剪贴板,格式为“SkypeMessageFragment”。警报显示效果很好,但使用
我的数据框 (ds) 中的每日数据看起来像这样跨越了几年: 对于每一天,我都需要将所有报价标准化为该特定日期的特定时间。例如,在 6 月 1 日,我需要将所有报价标准化为 6 月 1 日下午 3 点的
有人知道如何在 PL/SQL 存储过程中生成 .Net DateTime.Ticks,而无需在 Oracle 数据库中使用 .Net 程序集吗? 我在 .Net 中有一项服务,将 DateTime.T
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我在 Steam API 中搜索发送 Steam 报价的方法,但找不到。可以使用 API 或者您知道其他方法吗?我想在 PHP/Symfony 中使用它。 最佳答案 您目前无法通过 API 创建交易报
我是一名初学者 Scheme 程序员,我想丰富我在函数式编程方面的知识。我在 DrRacket IDE 中编程。最近我发现了一些有趣的代码: (car ''(a b)) 输出: 'quote
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我有以下结构化数据: { "@context": "https://schema.org/", "@type": "Offer", "priceCurrency": "EUR", "p
我是一名优秀的程序员,十分优秀!