小编Tom*_*len的帖子

Javascript无法设置颜色

该功能通过以下方式调用:

myChart.gChangeBarColour(1, "#000000");
Run Code Online (Sandbox Code Playgroud)

这有效:

   // Changes bars colour
    this.gChangeBarColour = function(gBarID, gBarColour) {

        if (gBarID <= this.gData.length && gBarID >= 0) {

            document.getElementById("gBar" + gBarID).style.backgroundColor = '#000000';

        }

    }
Run Code Online (Sandbox Code Playgroud)

但这不起作用:

// Changes bars colour
this.gChangeBarColour = function(gBarID, gBarColour) {

    if (gBarID <= this.gData.length && gBarID >= 0) {

        document.getElementById("gBar" + gBarID).style.backgroundColor = '" + gBarColour + "';

    }

}
Run Code Online (Sandbox Code Playgroud)

控制台完全没有错误!有任何想法吗?

javascript function object

0
推荐指数
1
解决办法
83
查看次数

生气...不能设置字体颜色

<!doctype html public "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">

<html>

<head>
    <link rel="stylesheet" href="css/default.css" type="text/css" /> 
</head>

<body>

<div class="topBar">

</div>

<div class="mainBox">
    erg
</div>

<div class="footer">

    <h3>Community</h3>

</div>
<div class="copyright">
    Copyright &copy; 2011 Scirra.com.  All rights reserved.
</div>

</body>

</html>
Run Code Online (Sandbox Code Playgroud)

用css:

body{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, Verdana;
    background-image: url(../images/background.png);
    background-repeat: repeat-x;
}

.topBar{
    position:absolute;
    background-color: #339900;
    height: 30px;
    border-bottom:2px solid #3FBF00;
    width: 100%;
    z-index:1;
}

.mainBox{
    margin: 0 auto;
    width: 740px;
    border-left: 1px solid #c0c0c0;
    border-right:1px solid #c0c0c0; …
Run Code Online (Sandbox Code Playgroud)

html css colors

0
推荐指数
1
解决办法
545
查看次数

感觉我做错了生成HTML

public class BlogComment
{
    public int ID;
    public int UserID;
    public string Username;
    public string Comment;
    public DateTime Date;
    public int VotesUp;
    public int VotesDown;

    public Panel GetCommentPanel()
    {
        Panel WrapPanel = new Panel();
        WrapPanel.CssClass = "user-comment-wrapper";

        Panel VotePanel = new Panel();
        VotePanel.CssClass = "rfloat";
        HyperLink UpVote = new HyperLink();
        HyperLink DownVote = new HyperLink();
        UpVote.CssClass = "s vote-box vote-up";
        DownVote.CssClass = "s vote-box vote-down";
        UpVote.NavigateUrl="#";
        DownVote.NavigateUrl = "#";
        VotePanel.Controls.Add(UpVote);
        VotePanel.Controls.Add(DownVote);
        WrapPanel.Controls.Add(VotePanel);

        Panel UserTextPanel = new Panel();
        UserTextPanel.CssClass = "user-comment-txt"; …
Run Code Online (Sandbox Code Playgroud)

html c# asp.net

0
推荐指数
1
解决办法
93
查看次数

ASP.net无法正确获取字体大小

我正在为图像文件绘制标签.除了字体大小外,一切都很完美.

gfx.DrawString(
    thisTempLabel.LabelText,
    new System.Drawing.Font(
        thisTempLabel.LabelFont,
        (float)thisTempLabel.fontSize
    ),
    Brushes.Black,
    new PointF(thisTempLabel.x, thisTempLabel.y)
);
Run Code Online (Sandbox Code Playgroud)

问题是我的用户在PX中选择字体大小,并且System.Drawing.Font需要EM大小.我不知道怎么解决这个问题!

我可以使用像素渲染文字吗?

c# asp.net size fonts font-size

0
推荐指数
1
解决办法
2652
查看次数

枚举到格式化字符串

public enum WebWizDateFormat
{
    DDMMYY,
    MMDDYY,
    YYDDMM,
    YYMMDD
}
Run Code Online (Sandbox Code Playgroud)

 

public class WebWizForumUser
{
    public WebWizDateFormat DateFormat { get; set; }

    public WebWizForumUser()
    {
        this.DateFormat = WebWizDateFormat.DDMMYY;
        HttpContext.Current.Response.Write(this.DateFormat);
    }
}
Run Code Online (Sandbox Code Playgroud)

这有效,但是当我响应时,它需要以"dd/mm/yy"的格式出现,我该怎么做?

c# asp.net enums

0
推荐指数
1
解决办法
1366
查看次数

C#用LINQ麻烦更新记录

    public static bool CheckLogin(string Username, string Password, bool AutoLogin)
    {
        bool LoginSuccessful;

        // Trim inputs and verify lengths
        Username = Username.Trim();
        Password = Password.Trim().ToLower();

        // Get the associated user records
        DataClassesDataContext db = new DataClassesDataContext();
        var q = (from User in db.tblForumAuthors where User.Username == Username select new
                {
                    User.Password,
                    User.Salt,
                    User.Username,
                    User.Author_ID,
                    User.User_code,
                    User.Active,
                    User.Login_attempt,
                    User.Last_visit,
                }).SingleOrDefault();

        // Invalid details passed
        if (q == null)
        {
            LoginSuccessful = false;
        }
        else
        {
            // Increment login attempts counter
            int LoginAttempts …
Run Code Online (Sandbox Code Playgroud)

c# linq

0
推荐指数
1
解决办法
162
查看次数

为什么我需要转换这些返回的结果?

    // Insert new record
    ArtworkingDataContext dc = new ArtworkingDataContext();
    tblArtworkData NewRecord = new tblArtworkData()
    {
        dateCreated = DateTime.Now,
        templateID = TemplatesID,
        userID = UsersID
    };
    dc.tblArtworkDatas.InsertOnSubmit(NewRecord);

    // Set new values
    this.Loaded = true;
    this.ID = NewRecord.ID;
    this.DateCreated = (DateTime)NewRecord.dateCreated;
    this.TemplateID = (int)NewRecord.templateID;
    this.UserID = (int)NewRecord.userID;
}
Run Code Online (Sandbox Code Playgroud)

当我设置新值时,ID不需要转换,但其他人都需要转换,否则我得到:

Cannot implicitly convert type 'int?' to 'int'.
Run Code Online (Sandbox Code Playgroud)

我已经厌倦了投出所有返回的数据,我做错了什么?为什么ID不需要演员?

.net c# linq casting

0
推荐指数
1
解决办法
153
查看次数

设置密码文本有多糟糕

对于 <input type="password" />

在ASP.net中:

PasswordField.text = RawPasswordString;
Run Code Online (Sandbox Code Playgroud)

这不起作用,但可以通过以下方式规避:

PasswordField.Attributes.Add("value", RawPasswordString);
Run Code Online (Sandbox Code Playgroud)

我这样做,所以当登记表失败,他们不需要,如果他们是有效的重新输入自己的密码,这让我很烦,在一些网站上没有尽头.我们有一个需要服务器验证的CAPTCHA字段,所以当这个失败时(最有可能失败的字段),我不希望它们输入正确的字段,但是密码因为清除而失败,这意味着它们必须输入CAPTCHA again.

有什么安全原因,如果这个页面是在HTTPS上就可以了吗?如果它是在带有nocaching的HTTPS上,我还应该注意什么呢?

asp.net security passwords user-input save

0
推荐指数
1
解决办法
382
查看次数

ASP.net SSL问题

如果我将登录用户重定向到我网站上的非SSL页面:

Response.Redirect("http://www.mysite.com/page.aspx");
Run Code Online (Sandbox Code Playgroud)

但是母版页有代码:

if (IsLoggedIn)
    ForceSSL();
Run Code Online (Sandbox Code Playgroud)

其中将用户重定向到:

Response.Redirect("https://www.mysite.com/page.aspx");
Run Code Online (Sandbox Code Playgroud)

在重定向和第二次重定向之间,是否有从客户端传输到服务器的不安全数据?

asp.net ssl

0
推荐指数
1
解决办法
211
查看次数

使用匿名外键连接表

有关

与我的其他问题相关:

评论系统设计

数据设计

假设我有一个标签表:

tblTags
-------------
TagID (int)
Name (string)
Run Code Online (Sandbox Code Playgroud)

还有两个内容表:

tblBlogs
-------------
Anchor (GUID, Primary Key)
BlogTitle (string)
+ More custom fields

tblTutorials
-------------
Anchor (GUID, Primary Key)
TutorialTitle (string)
+ More custom fields
Run Code Online (Sandbox Code Playgroud)

还会有更多带有锚点的表格,它不仅仅是2.

然后将标签与上述实体相关联:

tblTagAnchors
-------------
TagID (int, Foreign Key)
Anchor (GUID, Foreign Key)
Run Code Online (Sandbox Code Playgroud)

我的问题是,一旦我建立了博客和教程与特定标签的关联,有没有办法编写一个查询来返回带有特定标签的博客或教程?无需对博客和教程进行单独查询?

主要用途是搜索,类似于(伪):

select from tblBlogs and tblTutorials where the GUID exists in tblTagAnchors where tagID = 5

for each record returned
    if record from Blog
        response.write("<a href=blogView.aspx?ID=" + recID)
    else if record …
Run Code Online (Sandbox Code Playgroud)

sql database-design guid foreign-keys foreign-key-relationship

0
推荐指数
1
解决办法
691
查看次数