E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
MapPath
C# / .NET 在类中使用Server.
MapPath
直接在类中使用Server.
MapPath
会出现错误,这是由于类中不能直接使用System.Web.UI.Page的非静态函数造成的。
自我修炼的小石头
·
2024-02-14 09:55
c#
ui
Asp.Net 在类中使用Server.
MapPath
(随手笔记)
C#在类中使用Server.
MapPath
直接在类中使用Server.
MapPath
会出现错误,这是由于类中不能直接使用System.Web.UI.Page的非静态函数造成的。
无味无感
·
2024-02-14 09:55
.NET
Framework
ASP.NET MVC获取当前项目的根目录
System.Web.HostingusingSystem.Web.Hosting;直接调用Hosting中的HostingEnvironment方法varurl=HostingEnvironment.
MapPath
AC小小常
·
2024-01-31 19:46
ASP.NET随笔
C#文件下载(返回文件流)
webHostEnvironment.WebRootPath;//varwebRootPath=_webHostEnvironment.ContentRootPath;//>>>相当于HttpContext.Current.Server.
MapPath
它朝若是
·
2023-12-21 10:47
C#文件操作
c#
.netcore
DataSet 读取xml文件
DataSetds=newDataSet();ds.ReadXml(Server.
MapPath
(NetShop.Config.DbConfigs.GetSitePath+"images/flashdata
Joson.e8love
·
2023-11-28 08:12
dataset
xml
object
string
path
c
loniczip
Directory.Exists(Server.
MapPath
(webUploadFile))){Directory.CreateDirectory(Server.
MapPath
(webUploadFile
live for myself
·
2023-11-22 11:16
java
前端
服务器
Spire.doc读取模板文档,并在书签处插入内容
在书签位置插入文字//加载模板文档Documentdocument=newDocument(Server.
MapPath
("~/File/评价结果.doc"));//创建书签导航器BookmarksNavigatorbn
阿发博客
·
2023-11-01 23:27
Spire.doc
.net
.net
core
c#
Spire.doc
.net
word
上传的问题(FileUpload控件上传不支持给定路径的格式 问题解决 )
stringfilepath=Server.
MapPath
("~/upload"); HttpFileCollectionuploadFile=Request.Files;
weixin_30399155
·
2023-10-24 22:41
C#中如何调整图像大小
1.首先要获取你想要调整大小的图像:stringpath=Server.
MapPath
(“~/Images”);System.Drawing.Imageimg=System.Drawing.Image.FromFile
fangyuan621
·
2023-10-14 02:31
Microsoft
Visual
Studio
C#
c#
c# npoi创建数据有效性约束制定列和单元格分别设置
publicActionResultExport(){varcodesstringtemplateFileName=Path.Combine(Server.
MapPath
("/ExcelTemplate
葩熊
·
2023-10-07 18:48
数据库
前端
c#
MVC+API 下载文件
publicHttpResponseMessageDownloadFile(stringUrl){//将虚拟路径转化为物理路径stringfilePath=HttpContext.Current.Server.
MapPath
空气_437d
·
2023-08-22 08:38
2018-12-03
获取请求的来源2、Request.UserHostAddress:获取访问者的IP地址3、Request.Cookies:获取浏览器发过来的浏览器端的Cookie,从它里面读取Cookie值4、Request.
MapPath
647e7f79ed39
·
2023-08-04 00:24
将内容写在文档中并保存在本地某个文件夹中
stringfilename,stringfilecontent){//获取该项目的本地目录stringserverPat=System.Web.Hosting.HostingEnvironment.
MapPath
Net蚂蚁代码
·
2023-07-29 08:03
笔记
c#
C#中判断文件夹或文件是否存在的方法
一、根据虚拟路径获取文件物理路径:stringsavePath=Server.
MapPath
("~/Uploads/RemoteDatum/");二、判断文件夹是否存在if(!
BeanGo
·
2023-07-14 20:31
WPF
c#
开发语言
后端
ASP.NET 操作XML文件
XML示例文件实例化(new)一个XML文档对象:XmlDocumentxml=newXmlDocument();载入实例化的XML对象:xml.Load(Server.
MapPath
("test.xml
HappySheep欢乐小羊
·
2023-06-15 20:11
C# 写日志文件经常出现"正由另一进程使用,因此该进程无法访问该文件"
因此该进程无法访问该文件",以下为解决方法:publicstaticvoidWriteLog(string_msg){stringfolder=System.Web.HttpContext.Current.Server.
MapPath
---清心寡欲---
·
2023-04-07 23:37
C#
C#
因此该进程无法访
EPPlus导出excel实例及设置工作簿比例
Listchuwailist){//创建excelstringfilename=DateTime.Now.ToString("yyyyMMddHHmmss")+".xlsx";stringnewpath=Server.
MapPath
DunDunM
·
2023-04-04 03:10
aspose.cells 带模板导出excel
0;longformId=obj.id;stringselectedModel=obj.selectedModel;stringtempFile=HttpContext.Current.Server.
MapPath
CahierX
·
2023-04-01 00:52
Asp.net
ASP.NET MVC获取路径并下载的问题
在网上查了给种方法,一直在说用Server.
MapPath
()。但是在我的项目中,是没有这个方法。对于我这种小白来说,当然是不知道原因了。
CyborgNO1
·
2023-01-26 18:50
C# 调用exe 传递参数
System.Diagnostics.Processproc=newSystem.Diagnostics.Process();proc.StartInfo.FileName=Path.Combine(Server.
MapPath
sqh001
·
2023-01-11 04:09
ASP.Net core 中Server.
MapPath
的替换方法
最近忙着将原来的asp.net项目迁移到asp.netcore平台,整体还比较顺利,但其中也碰到不少问题,其中比比较值得关注的一个问题是,在netcore平台中,System.Web程序集已经取消了,要获取HttpContext并不是太容易,好在通过依赖注入,还是可以得到的,具体方法不在本文的讨论范围,大家可以自行百度。但是在得到了netcore版本的HttpContext后,发现已经不再有Ser
shanghaimoon
·
2022-12-27 07:47
asp.net
core
web
asp.net
后端
c#
error CS0103: 当前上下文中不存在名称“Server”; error CS0103: 当前上下文中不存在名称“Path”;error CS0103: 当前上下文中不存在名称“XXX”
Server.
MapPath
()的全名是System.Web.HttpContext.Current.Server.
MapPath
()。
认真看海
·
2022-12-04 19:53
c#
错误记录
PaddleOCR中PP-Structure使用例程img_show.save保存路径问题
#网上代码im_show.save(
MapPath
(".
xie_wenkai
·
2022-12-04 07:49
深度学习
OCR
python
ocr
深度学习
c#将文件流转成pdf,并保存文件
dt.Rows[0]["fileData"];stringfileName=DateTime.Now.ToString("yyyyMMddhhmmss")+".pdf";StringdirPath=Server.
MapPath
qq_36276758
·
2022-12-01 21:51
c#
后台
功能
asp.net web api2设置默认启动登录页面的方法
HttpApplication{protectedvoidApplication_Start(){log4net.Config.XmlConfigurator.Configure(newFileInfo(Server.
MapPath
·
2022-09-24 07:23
c# mysql 1062_C#中MySQL函数用DATASET 和 MySqlDataAdapter 操作数据库
常用的有三种访问1.C#中调用MYSQL数据库时,我用的是MySQLDriverCS这个方法.一般的查询可以方便执[stringdbPath=@"Data\dbTest.mdb";stringdb=Server.
MapPath
weixin_39915267
·
2022-09-04 08:48
c#
mysql
1062
ASP.NET MVC创建XML文件并实现元素增删改
new.xml文件:publicActionResultIndex(){returnView();}[HttpPost]publicActionResultAddXml(){stringpath=Server.
MapPath
·
2022-07-31 15:21
C#操作XML方法详解
初始化一个xml实例XmlDocumentxml=newXmlDocument();//导入指定xml文件xml.Load(path);xml.Load(HttpContext.Current.Server.
MapPath
·
2021-11-08 12:14
C#中调整图像大小的步骤详解
要实现这一目标,我们可以采取以下几个步骤:1.首先要获取你想要调整大小的图像:stringpath=Server.
MapPath
("~/Images");System.Drawing.Imageimg=
·
2021-05-08 17:04
C# MVC 获取程序中 目录 或虚拟目录的实际文件目录路径
System.Web.HttpContext.Current.Request.PhysicalApplicationPath;这个只能取得当前项目的根目录,也就是http://www.a.com/的根目录Server.
MapPath
f5df0a516b61
·
2021-04-14 00:36
asp.net简单读取xml文件信息
以下是循环读取xml文件中节点的值 XmlDocumentxmlDoc=newXmlDocument(); xmlDoc.Load(Server.
MapPath
LMAOhuaNL
·
2020-09-17 15:27
C#
asp.Net
最大在线人数统计
Objectsender,EventArgse){Application.Lock();DataSetobjDataSet=newDataSet()objDataSet.ReadXml(Server.
MapPath
MRman0404
·
2020-09-17 10:43
数据库
C# 上传RAR文件 解压 获取解压后的文件名称
此方法适用于C盘windows文件夹中有WinRAR.exe文件if(fileExt.ToUpper()==".RAR"){stringzpath=Server.
MapPath
("~/SendFileZIP
下一秒_待续
·
2020-09-17 09:04
C#
类库
方法
上传Rar文件
if(fileExt.ToUpper()==".RAR"){stringzpath=Server.
MapPath
("~/SendFileZIP/");//不存在文件夹时创建文件夹if(!
PatyTime
·
2020-09-17 09:23
C#
关于Server.
MapPath
()的命名空间
Access数据库连接字符串:"Provider=Microsoft.Jet.OLEDB.4.0;DataSource="+System.Web.HttpContext.Current.Server.
MapPath
newnazi
·
2020-09-17 07:53
代码
access最快速的批量导入SQL的方法 使用SqlBulkCopy
DateTime.Now.ToString("yyyyMMdd")+".mdb";stringtablename=DateTime.Now.ToString("yyyyMMdd");if(File.Exists(Server.
MapPath
emailqjc
·
2020-09-16 22:34
.NET
从Xml中取得数据存在ActiveReports中
//Asp.netstringsXmlFile="~/App_Data/sample1.xml";stringsFilePass=HttpContext.Current.Server.
MapPath
(sXmlFile
ryukengun
·
2020-09-16 22:25
ActiveReports
xml
C# 运行.exe 并获取返回值
protectedintProcessInfoReturnValue(){try{stringstrExePath=HttpContext.Current.Server.
MapPath
("~\\SWFTools
zhangqihua0
·
2020-09-16 13:21
asp.net
技术
ASPNET Core 中获取应用程序物理路径
如果要得到传统的ASP.Net应用程序中的相对路径或虚拟路径对应的服务器物理路径,只需要使用使用Server.
MapPath
()方法来取得Asp.Net根目录的物理路径,如下所示://ClassicASP.NETpublicclassHomeController
十年河东,十年河西,莫欺骚年穷
·
2020-09-16 01:33
.net
core
wkhtmltopdf 生成pdf
=null)11{12AppPath=HttpCurrent.Server.
MapPath
("~");13}1415returnAppP
weixin_30343157
·
2020-09-16 01:40
asp连接数据库示例
adodb.connection")dbPath="config/bloo.mdb"connStr="Provider=Microsoft.Jet.OLEDB.4.0;DataSource="&Server.
MapPath
xiang588
·
2020-09-16 00:19
技术文章
asp.net链接数据库代码
newOleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;DataSource="+System.Web.HttpContext.Current.Server.
MapPath
微笑微笑
·
2020-09-15 23:33
asp.net
数据库链接
插入删除修改语句
Webform(文件上传)
它是用来选择要上传的文件,还需要一个按钮来将选中的文件上传到服务器上stringpath="images/"+FileUpload1.FileName;FileUpload1.SaveAs(Server.
MapPath
weixin_30454481
·
2020-09-15 20:01
ui
c#
Global中的Timer计时器
protectedvoidApplication_Start(objectsender,EventArgse)//端口启动的事件{Hzjg.Common.Utility.Log.FilePath=Server.
MapPath
baizhi2524
·
2020-09-15 19:59
matlab
Asp.Net WebForm 图片上传及物理路径的得到
【得到物理路径】1.在类中获取物理路径:System.Web.HttpContext.Current.Server.
MapPath
("");[注意:要引用程序集System.Web]2.在webform
林子~
·
2020-09-15 19:37
ASP.NET相关
c#
asp.net
webform
图片
vb 操作xml方法总结
PrivateSubxxx(ByValxmlStrAsString)''初始化xml文档DimxmlDocAsNewXmlDocument''导入指定xml文件(存在则覆盖)xmlDoc.Load(Server.
MapPath
huwei_
·
2020-09-15 13:26
.NET/C#
ASP.NET FileUpload上传文件如果存在此文件提示是否覆盖
_fileFullName=Server.
MapPath
("~/temp/")+FileUpload1.FileName;if(File.Exists(_fileFullName)){ClientScript.RegisterStartupScript
Gary_Leong
·
2020-09-15 10:40
.NET
asp操作数据库access
本人在网上查阅各大论坛和贴吧,找到server对象方法
MapPath
可以获取文件路径经小编测试server获取路径,提示报错信息server对象未定义!改成asp代码后
weixin_34348174
·
2020-09-15 09:47
HTTP 错误 404 解决方法
问题1:未启用父路径症状举例:Server.
MapPath
()错误'ASP0175:80004005'不允许的Path字符/0709/dqyllhsub/news/OpenDatabase.asp,行4
买成衣的女程序员
·
2020-09-15 00:18
将文件以流的形式另存为下载
//【1】附件为本地磁盘路径(附件可以为图片、pdf、word等等)stringstrFile=Server.
MapPath
("/images/526763.pdf");using(FileStreamfs
weixin_30600503
·
2020-09-14 20:45
javascript
前端
json
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他