电子商务设计

发布于 2024-07-27 03:28:25 字数 422 浏览 5 评论 0原文

我们正在使用asp.net 设计一个电子商务网站。 我们正在使用基本设计,不知道是否可以添加一些东西或转向更好的 asp 或 silverlight 版本等。我们希望收到您的建议。

我们正在制作 3 个主页,一个用于登录,另一个用于产品,一个用于支付。 每当有购买时,我们都会在数据库中插入一条记录。 我们有两张表,一张用于日常交易,另一张用于历史记录。 状态(发货完成、订单已交付)更新的记录可以根据客户的请求通过历史记录创建的视图查看。 此外,我们计划在交易完成或状态更新后向客户发送电子邮件。 (SQL提供了我猜sp_send_mail的功能)。 我还想处理峰值流量并控制每个用户的平均数据。

我们计划在 IIS 上使用压缩来控制数据,并且听说过使用静态页面来减少数据传输。 但我不确定它会如何运作。 我们希望听到对上述内容的任何改进、修改和建议。

We are designing an e-commerce web site using asp.net. We are using a basic design and don't know if we can add something or shift onto a better version of asp or silverlight etc. We would like your suggestions.

We are making 3 main pages one for the login, another for the products and one for the payment. Whenever there is a purchase we insert a record in our database. We have two tables, one for daily transactions and another for history. The records whose status (shipment done, order delivered) is updated can be seen on the customer's request through a view created on the history. Also we are planning to send an email to the customer once a transaction is done or the status is updated. (SQL provides the feature I guess sp_send_mail). Also I would like to handle peak traffic and control the average data per user.

We are planning to use compression on IIS to control data and have heard about using static pages to reduce data transfer. But I am not sure how it would work. We would like to hear any improvements, modifications and suggestions to the above.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

定格我的天空 2024-08-03 03:28:25

这取决于您的服务器版本。
不管怎样,IIS 对于动态和静态内容都有自己的压缩功能。 它是本机内部模块,我想它运行得非常快。
如果需要更灵活的配置,可以关注Helicon Apemod_gzipmod_cache 一起可以提高您的性能。 一项重要的优势是灵活性。 您可以为不同的 MIME 类型设置不同的压缩级别。
简单示例:

SetEnvIf mime text/html User-Agent (?!MSIE).* gzip=9

它对 HTML 文件启用级别 9 的 Gzip 压缩,并排除 Internet Explorer。

That depends on your server version.
Anyway, IIS has its own compression features for dynamic and static content. It's native internal module and I guess it works very quickly.
If you need more flexible configuration, you can pay attention on Helicon Ape. mod_gzip and mod_cache together can improve your performance. One important advantage is flexibility. You can set different compression level for different MIME types.
Simple example:

SetEnvIf mime text/html User-Agent (?!MSIE).* gzip=9

It enables Gzip compression with level 9 for HTML files and excludes Internet Explorer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文