我有购物车网络应用程序。当我在我的本地机器上运行它时,它工作得很好。但是当我在网上托管我的应用程序时,我面临两个问题
当我登录并使用我的应用程序一段时间后,用户会自动登录并重定向到登录页面。
由datalist控件检索和显示的一些图片没有只显示文本
我正在使用方法FormsAuthentication.RedirectFromLoginPage(username,true)来登录用户
我的web.config文件是
<?xml version="1.0"?>
<!--
For more information on how to conf
我想用asp.net mvc ..however在js文件中写点东西,好像它不能工作。
new System.IO.StreamWriter("Assets/data.js", true))
{
file.WriteLine("xyz");
}
it显示
error at "Assets/data.js". Could not find a part of the path 'C:\Program Files (x86)\IIS Express\~\Assets\data
我有以下代码通过HTML5文件应用程序接口读取文件。我已经通过input=file元素上传了文件。以下是代码块。
<input type="file" id="files" name="file" />
<button id="readFile">Read File</button>
<output id="content"></output>
<script>
function readFile()
{
/* Get the r
我在ASP.NET中有一个ASP.NET控件。
C#码
if (FileUpldFile.HasFile)
{
try
{
//saving the file
FileUpldLicenceFileMOT.SaveAs("c:\\SaveDirectory" + FileUpldFile.FileName);
//Getting the Path of saved file
var pathMot = @"c:\\SaveDirectory" + FileUpldFile.FileName;