我已经使用azure sql数据库,通过Webmatrix3成功地将我的DNN网站部署到azure。
我已经创建了一个azure redis缓存来尝试加快性能。
我搜索过并搜索过但未找到有关如何挂钩网站以使用缓存的文档。我是否必须以某种方式将其集成到WebMatrix中并重新发布?
发现这是为了通过Visual Studio集成ASP.NET应用程序:MSFT Documentation
$('input, select').keydown(function(e) {
if (e.keyCode==40) {
$(this).next('input, select').focus();
}
});
我可以使用我在DNN web.config中找到的相同appSettings行,将新创建的azure redis缓存值设置为“key”和“value”吗?