text.aspx.cs
来自「OA系统源码 办公应用软件源码 asp.net 开发」· CS 代码 · 共 35 行
CS
35 行
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Data;
using System.Data.OleDb;
using System.Collections.Generic;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using MyOffice.BLL;
using MyOffice.Models;
public partial class Company_Text : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (HttpContext.Current.Request.Params["Id"].ToString() != null)
{
string name = HttpContext.Current.Request.Params["Id"].ToString();
HttpContext.Current.Response.Clear();
if(companyBLL.seUserInBool(name))
{
HttpContext.Current.Response.Write("次昵称已存在");
}
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.End();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?