c 相關符號的用法

2021-06-16 05:06:10 字數 3080 閱讀 5794

剛入行今天發現自己在這個行業的道路還很遠,最近也遇到了在html**中運用相關的字元,現總結下:

1.<% %>一般在在html前台中主要寫的是c#的相關的**。example:貼段code:

<%

ifrow_count

>

0%>

<

table

align

="right"

cellpadding

="0"

cellspacing

="0"

>

<

tr>

<

td>

<%

ifval(start_position)

>

1%>

<

span

style

="cursor:pointer"

class

="left green bold"

onclick

="update_paging(1);"

>

first

span

>

<%

endif

%>

<%

ifval(prev_page_start)

>

1%>

<

span

style

="cursor:pointer"

class

="left green bold"

onclick

="update_paging(<%= prev_page_start %>);"

>

|prev

span

>

<%

endif

%>

<%

ifval(prev_page_start)

>0or

val(start_position)

>

1%>

<

span

class

="left bold"

>

|span

>

<%

endif

%>

<

span

class

="left bold"

>

<%

=current_page

%>

span

>

<%

if(val(total_pages)

+val(extra_page))

>=

page_position_1

%>

<

span

style

="cursor:pointer"

class

="left green bold"

onclick

="update_paging(<%= page_next_1 %>);"

>

|<%

=page_position_1

%>

span

>

<%

endif

%>

<%

if(val(total_pages)

+val(extra_page))

>=

page_position_2

%>

<

span

style

="cursor:pointer"

class

="left green bold"

onclick

="update_paging(<%= page_next_2 %>);"

>

|<%

=page_position_2

%>

span

>

<%

endif

%>

<%

if(val(total_pages)

+val(extra_page))

>=

(val(page_position_2) +1

) %>

<

span

style

="cursor:pointer"

class

="left green bold"

onclick

="update_paging(<%= page_next_1 %>);"

>

|next

span

>

<%

endif

%>

<%

iflast_start

>

(val(page_next_2)

+val(per_page))

%>

<

span

style

="cursor:pointer"

class

="left green bold"

onclick

="update_paging(<%= last_start %>);"

>

|last

span

>

<%

endif

%>

td>

tr>

table

>

<%

endif

%>

2.<%= %>在前端html**中主要在其中新增到是變數或者是方法;

3.<%# %>在前端html**中主要在其中新增的是資料繫結;

code example:

time:<%# ( (com.qfgame.******bbs.logic.post.postinfo)container.dataitem ).postdatetimeformat %>

總記錄:<%=objectcount.tostring()%>

每頁:<%=pagesize.tostring()%>

總頁數:<%=maxpage.tostring()%>

C 類的相關語法,符號 和 的用法

include include using namespace std class 派生類名 繼承方式 基類名 宣告了乙個類c,類c裡宣告了乙個成員函式void f 但沒有在類的宣告裡給出f 的定義,那麼在類外定義f 時,就要寫成void c f 表示這個f 函式是類a的成員函式。class poi...

C 的符號用法 ?問號用法

在字串前加 相當於對string format 的簡化 如 int m a 1 int m b 2 使用string format console.writeline string format this is a this is b m a,m b 使用了 就可以在原來佔位符的地方直接用引數代替 ...

C 符號和 符號的用法介紹

1.忽略轉義字元 string str c windows system32 string str c windows system32 2.字串跨行 string str line one line two line three line fore string str line one line...