输入源代码会导致空格

时间:2016-06-03 18:03:22

标签: html asp-classic removing-whitespace

如何在html源代码中删除Enter字符带来的空白?当我使用 html 内联asp代码并且我想生成例如这个数字5由一个Sql查询而我想在一个单独的行中编写Sql。

我应该使用第三语言以及 Javascript CSS ,还是 HTML ASP (或 PHP )自己?

示例内联asp代码:

<html>
<body>
orders (
<%sql="select count(*) as total from orders"
recordset.open sql,objConnection
response.wrire rs("total")
rs.close
%>
)
</body>
</html>

请运行此代码段:

orders (
5
)

<br>

orders (5)

1 个答案:

答案 0 :(得分:0)

尝试移动asp服务器标签旁边的括号以删除空格。

class FlushOutUser < ActiveRecord::Migration
  def change
    add_column :users, :full_name, :string
    add_column :users, :first_name, :string
    add_column :users, :last_name, :string
    add_column :users, :role, :string
    add_column :users, :gender, :string
    add_column :users, :dob, :date
    add_column :users, :age, :integer
    add_column :users, :goal_weight, :integer
    add_column :users, :goal_muscle, :integer
    add_column :users, :goal_bodyimage, :integer
    add_column :users, :goal_performance, :integer
    add_column :users, :goal_endurance, :integer
    add_column :users, :goal_health, :integer
  end
end