我有一个两页的网站 - 一个页面显示文档列表,另一个页面显示该文档的属性。
现在,如果我编辑文档的属性,保存更改,我可以看到数据在数据库中已更改。但是当我重新加载文档列表时 - 列表包含旧数据。点击刷新并显示修改后的数据。
如果我追踪更改,它看起来确实正在返回旧数据。
我已经尝试传递URL中的滴答数以使IE加载新版本 - 但它仍然显示旧版本的数据。即使我刷新页面并且它发生了变化 - 显示相同的文档详细信息并显示旧版本的数据,再次刷新并更新。
我已检查过基础数据库中的数据是否正在更改。
所以接下来的电话
using (nhs_patient_document_s documents = new nhs_patient_document_s(Properties.Settings.Default.DataConnectionEDM))
{
List<nhs_patient_document> found = documents.Select<nhs_patient_document>("nhs_patdoc_patientid", String.IsNullOrEmpty(criteria) ? String.Empty : criteria);
output = JsonConvert.SerializeObject(found);
}
最终这是执行查询的代码
public List<T> Select<T>(String Field, String Value)
{
List<T> results = null;
String sql = String.Empty;
try
{
sql = (String.Format("select * From {0} Where {1} = '{2}'", TableName, Field, Value.Replace("'", "''")));
results = Execute<T>(sql, CommandType.Text);
}
catch (System.Exception e)
{
throw e;
}
finally
{
sql = String.Empty;
}
return results;
}
上面调用的执行函数如下:
protected List<T> Execute<T>(String CommandString, CommandType CommandType)
{
DataSet dataSet = null;
SqlConnection connection = null;
SqlCommand command = null;
SqlDataAdapter dataAdapter = null;
List<T> results = null;
try
{
connection = new SqlConnection(connectionString);
command = new SqlCommand(CommandString, connection);
command.CommandType = CommandType;
command.CommandTimeout = 0;
if (connection.State != ConnectionState.Open) connection.Open();
dataSet = new DataSet();
dataAdapter = new SqlDataAdapter(command);
dataAdapter.Fill(dataSet);
results = ExtractData<T>(dataSet);
}
catch ( System.Exception e)
{
throw e;
}
return results;
}
任何想法如何强制它从服务器获取新数据。
PS感谢其他框架的建议,但我只有很短的时间来写这个,没时间学习它们。
答案 0 :(得分:0)
找到它并且问题不是SQL或C#中的缓存,而是jquery进行ajax调用的方式。基本上jquery正在缓存结果
我需要添加
cache: false
到ajax电话
$.ajax({
url: 'PatientGetdocuments.ashx?patientid=' + patientid,
cache: false,
success: function (result) {
.
.
.
});
}
});
感谢评论显示SQL注入是多么开放,但我今天有一个很短的截止日期来完成它 - 将考虑更改代码的这一部分以避免出现问题。