asp.net记录错误日志的方法

1、说明

  在调试发布后的asp.net项目时有可能会遇到意想不到的错误,而未能及时的显示。这就需要记录日志来跟踪错误信息,所以写了个简单的记录信息的方法,记录简单的文本信息也可以使用。此方法是以生成文本文件的方式记录的,下面贴出代码

2、代码

需要引用 using System.IO;

byte[] myByte = System.Text.Encoding.UTF8.GetBytes("这里是你想要的记录的文本信息");
string strPath = Server.MapPath("~") + "\\Log\\";
if (!Directory.Exists(strPath))
{Directory.CreateDirectory(strPath);
}
string strPathLog = strPath + DateTime.Now.ToString("yyyyMMddHHmmss") + ".txt";
using (FileStream fsWrite = new FileStream(strPathLog, FileMode.Append))
{fsWrite.Write(myByte, 0, myByte.Length);
};

  这里会在项目的根目录下生成一个Log的文件夹,如果没有该文件夹会自动创建

      

3、示例

try {int i = Convert.ToInt32("");
}
catch (Exception ex) {byte[] myByte = System.Text.Encoding.UTF8.GetBytes(ex.ToString());string strPath = Server.MapPath("~") + "\\ErrorLog\\";if (!Directory.Exists(strPath)){Directory.CreateDirectory(strPath);}string strPathLog = strPath + DateTime.Now.ToString("yyyyMMddHHmmss") + ".txt";using (FileStream fsWrite = new FileStream(strPathLog, FileMode.Append)){fsWrite.Write(myByte, 0, myByte.Length);};
}

  

 

作者:小路 QQ:2490024434 
出处:http://www.cnblogs.com/lengzhan/ 
本文版权归【冷战】和博客园所有,欢迎转载收藏,未经作者同意须保留此段声明,否则保留追究法律责任的权利。

转载于:https://www.cnblogs.com/lengzhan/p/6100419.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/417728.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Flex DES加密

as3crypto:一个as3的关于加解密的开源项目 http://code.google.com/p/as3crypto/ 加密 var key:ByteArray new ByteArray(); key.writeUTFBytes("cf43qbhs"); var iv:ByteArray new ByteArray(); iv.writeUTFBytes("cf43qbhs"); va…

oracle建表代码,Oracle 建表(一对多)代码及相关约束示例

建表(一对多)代码及相关约束create table t_class(c_id number(3) primary key,c_name varchar2(20) not null);create table t_stu(s_id number(5) primary key,s_name varchar2(8) not null,sex char(2) default 男,birthday date,school_age number(2) check(school_age>…

Flex中的Base64加解密

Flex中的Base64加解密Flex sdk3就内置了Base64的加/解密工具类分别是mx.utils.Base64Encodermx.utils.Base64DecoderBase64Encoder用法如下: var str:String "原始字符串";//获取原始字符串var base64:Base64Encoder new Base64Encoder();base64.insert…

iOS10 UI教程管理层次结构

iOS10 UI教程管理层次结构 iOS10 UI教程管理层次结构,在一个应用程序中,如果存在多个层次结构,就需要对这些层次结构进行管理。在UIView类中提供了可以用来管理层次结构的方法,让开发者可以添加、移动、删除来自层次结构中的元素。…

flash影响中文输入

外部网页&#xff1a;鼠标离开flash时可以输入中文<s:Application mouseOut"IMEEnabled()"> /** * 允许中文输入法 */ protected function IMEEnabled():void { IME.enabledtrue; }内部控件&#xff1a;获取焦点时加IME.enabledtrue;

oracle rac添加用户组,oracle 11g rac 与 oracle 10 rac所需要建立的组和用户

oracle 11g rac配置1. Create OS groups using thecommand below. Enter these commands as the root user:#/usr/sbin/groupadd -g 501 oinstall#/usr/sbin/groupadd -g 502 dba#/usr/sbin/groupadd -g 504 asmadmin#/usr/sbin/groupadd -g 506 asmdba#/usr/sbin/groupadd -g …

appium()-The event firing

原文地址&#xff1a;https://github.com/appium/java-client/blob/master/docs/The-event_firing.md since 4.1.0 The purpose This feature allows end user to organize the event logging on the client side. Also this feature may be useful in a binding with standard…

Flash Builder非法关闭导致无法启动

"C:\Program Files\Adobe\Adobe Flash Builder 4.5\FlashBuilder.exe" -clean 有时候出于某种原因&#xff0c;Flash Builder被非法关闭了&#xff08;比如死机&#xff09;&#xff0c;这个时候再启动Flash Builder&#xff0c;就会提示错误&#xff0c;提示你去看一…

c# oracle datasource,C# 连接Oracle 数据库 示例源码下载

【实例简介】C# 实现 Oracle 数据库的 增删改查 操作【实例截图】【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using S…

前端学习(2169):vue-router安装和配置方式

main.js import VueRouter from vue-router import Vue from vue//安装插件 const routers new VueRouter({//配置之间的关系routes })export default router index.js import VueRouter from vue-router import Vue from vue//安装插件 const routers new VueRouter({//配…

(模板)网页游戏用的“内容区”的“图赏影音”模板

网页游戏&#xff0c;没图赏影音用到的 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns"http://www.w3.org/1999/xhtml"> <head>…

wmode解决flash透明及层深问题

在做web开发中可能会遇到flash遮挡页面中元素的情况&#xff0c;无论怎么设置flash容器和层的深度(z-index)也无济于事&#xff0c;现有的解决方案是在插入flash的embed或object标签中加入”wmode”属性并设置为wmode“transparent”或”opaque”&#xff0c;但wmode属性到底是…

url oracle default schema,oracle @Table中使用schema时insert报错

第一部分测试情况如下:maven修改com.alibabadruid1.1.10实体类Table(name "dpcenter.xeuser")public class OUser {private String userid;private String username;...}测试代码public static void main(String[] args) {OracleStyle stylenew OracleStyle();Conne…

如何在intellj Idea中给新建的项目添加jar包?

1. 假如我加入joda.jar 2. 找到发布的你想要的jar包&#xff0c;下载&#xff01; 3. 解压刚下载的jar包&#xff0c;复制 4. 在intellj idea中新建一个java项目&#xff0c;然后创建一个专门用于放jar的lib文件夹&#xff0c; 然后添加ctrlv 黏贴刚复制的jar包&#xff0c; 然…

outerDocument访问外部属性方法

使用"outerDocument.name"来访问外部的控件或者属性。

matlab builder for java下载,Matlab Builder JA - Compile Matlab into a Java jar - Free Version?

问题Please keep in mind that I know nothing about Matlab.Matlab Builder JA lets developer build Matlab applications and export them into Java jars. Thats great, I just have to produce a jar and I can then use it from other java code.Does anyone know how mu…

LintCode 两两交换链表中的节点

给一个链表&#xff0c;两两交换其中的节点&#xff0c;然后返回交换后的链表。 样例 给出 1->2->3->4, 你应该返回的链表是 2->1->4->3。 分析&#xff1a;第一次调试的时候用了P1 然后超时调整不过&#xff0c;之后没用p1 就可以了。。 /*** Definition fo…