小编vaq*_*uas的帖子

System.StackOverflowException

请帮助我关于System.StackOverflowException即时设置.aspx将记录写入数据库我使用4层archietecture实现这一切都在工作但是当我编译页面然后它显示字段插入数据,当我插入数据到那些字段并clik提交按钮然后它显示System.StackOverflowException发生

public class Customers
{
    public Customers()
    {
        int CustomerID = 0;
        string Fname = string.Empty;
        string Lname = string.Empty;
        string Country = string.Empty;
    }
    public int CustomerID
    {
        get { return CustomerID; }
        set { CustomerID = value; }
    }
    public string Fname
    {
        get { return Fname; }
        set { Fname = value; }****
    }
    public string Lname
    {
        get { return Lname; }
        set { Lname = value; }
    }
    public string Country
    {
        get { return …
Run Code Online (Sandbox Code Playgroud)

.net c# asp.net stack-overflow c#-2.0

3
推荐指数
1
解决办法
6983
查看次数

标签 统计

.net ×1

asp.net ×1

c# ×1

c#-2.0 ×1

stack-overflow ×1