⑴ pos机 上传下载文件
建人,不要问了,这个地方你问不到的.少来!!!!操.
胜大爷在此留言.
⑵ 急,加高分帮我解决了问题,asp.net(C#)如何实现小票打印功能
肯定是可以做出来那种效果的,具体的打印功能,你要去看看打印方面的API,至于你说的用什么框架来编系统?这个不明白啥意思。是指BS和CS的程序吗?
那一般都是CS的程序了,不会很复杂,你在网上搜一下C#。
if Request.QueryString("link")<>"" then '如果link参数不为空值
linkpath=Request.ServerVariables("Query_String") '获得所有参数字串即"?"后面的部分,如xxx.asp?a=1&b=2 linkpath的值就是a=1&b=2
pos=Instr(linkpath,"link=") '获得 字串 link= 在linkpath中的位置
linkpath=right(linkpath,len(Request.ServerVariables("Query_String"))-pos-4)
'len(Request.ServerVariables("Query_String"))-pos-4 '获得 字串 link以后的字串,包含link 然后-4 得到=的距左的位置,再Rigth取得=后边的字串
Response.Redirect(linkpath) '浏览器转向
else
Response.Redirect("main.asp") '同上
end if
写这代码的人闲的? 得到的结果就相当于Request.QueryString("link")的值
等同以下代码
if Request.QueryString("link")<>"" then
Response.Redirect(Request.QueryString("link"))
else
Response.Redirect("main.asp")
end if
⑷ asp复制功能
有这么复杂吗?!
郁闷死!!
/// <summary>
/// 粘贴文本
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ikbCopy_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
txtInput.AppendText( " " + Clipboard.GetText() + " ");
}
/// <summary>
/// 复制文本
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
string text = "";
if (txtInput.SelectedText.Length == 0)
{
MessageBox.Show("请选中一些文字");
}
else
{
text = txtInput.SelectedText;
Clipboard.SetText(text);
}
}
很简单..
就一个 Clipboard.GetText() 就行了
把你复制的文本就可以粘贴到任何位置
谢谢~
⑸ POS机常见问题
一般就pos机而言,固定pos机信号相对稳定,移动pos机则有时候信号不稳定,但是比较方便。盛付通pos机信号稳定欢迎办理 1822----1324---705
⑹ 寻求多条件站内搜索asp源码(250分)
楼主你好:
针对你的问题,我已经写好ASP代码,支持多条件查询和模糊查询,包括分页代码都写好了,100%能用!
注意:表中各字段名我暂时用的中文,就是你提到的:"标题、内容、发布者" ,为的是让你理解,但你实际应用中,最后不要将字段名设为中文,改成英文吧!
查询及显示查询结果的代码如下:
<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("数据库名.mdb")
%>
<%
sql88="select * from 数据表名 where "
if trim(request("bt"))<>"" then
sql88= sql88 & "标题 like '%"&trim(request("bt"))&"%' and "
end if
if trim(request("nr"))<>"" then
sql88= sql88 & "内容 like '%"&trim(request("nr"))&"%' and "
end if
if trim(request("fbz"))<>"" then
sql88= sql88 & "发布者 like '%"&trim(request("fbz"))&"%' and "
end if
sql88= sql88 & " 1=1 "
set rs88=server.createobject("adodb.recordset")
rs88.PageSize = 2 '这里设定每页显示的记录数
rs88.CursorLocation = 3
rs88.Open sql88,conn,0,2,1 '这里执行你查询SQL并获得结果记录集
pre = true
last = true
page = trim(Request.QueryString("page"))
if len(page) = 0 then
intpage = 1
pre = false
else
if cint(page) =< 1 then
intpage = 1
pre = false
else
if cint(page) >= rs88.PageCount then
intpage = rs88.PageCount
last = false
else
intpage = cint(page)
end if
end if
end if
if not rs88.eof then
rs88.AbsolutePage = intpage
end if
%>
<form action="search.asp" method="post" name="form1">
<table width="650" border="1" cellpadding="0" cellspacing="0" align="center">
</tr>
<td height="20" align="center" colspan="2">查询条件(填写任意一项或几项均可查询,支持模糊查询)</td>
</tr>
<tr bgcolor="#F2E1CC" >
<td height="20" align="center">标题</td>
<td height="20" align="center"> <input type="text" name="bt" size="15" /> </td>
</tr>
</tr>
<td height="20" align="center">内容</td>
<td height="20" align="center"> <input type="text" name="nr" size="15" /> </td>
</tr>
</tr>
<td height="20" align="center">发布者</td>
<td height="20" align="center"> <input type="text" name="fbz" size="15" /> </td>
</tr>
</tr>
<td height="20" align="center" colspan="2"><input type="submit" name="submit" value="查询" /></td>
</tr>
</table>
<br>
<hr align="center" width="650">
<br>
<table width="650" border="1" cellpadding="0" cellspacing="0" align="center">
<%
if rs88.recordcount>0 then
for i=1 to rs88.PageSize
if rs88.EOF or rs88.BOF then exit for
%>
<tr>
<td height="25" align="left"><%=i%>. <%=rs88("标题")%></td>
</tr>
<%
rs88.movenext
next
else
%>
<tr>
<td height="20" align="center" colspan="7">对不起,没有符合查询条件的学生信息!</td>
</tr>
<%
end if
%>
</table>
<table width="650" border="1" cellpadding="0" cellspacing="0" align="center">
<tr bgcolor="#DFDFDF">
<td align="center" height="30">
<%if rs88.pagecount > 0 then%> 共<%=rs88.recordcount%>条记录 每<%=rs88.PageSize%>个/页 当前页: <%=intpage%>/<%=rs88.PageCount%> <%else%> 当前页: 0/0 <%end if%>
<a href="search.asp?page=1">首页</a> |
<%if pre then%>
<a href="search.asp?page=<%=intpage -1%>"> 上一页</a> | <%end if%>
<%if last then%>
<a href="search.asp?page=<%=intpage +1%>"> 下一页</a> | <%end if%>
<a href="search.asp?page=<%=rs88.PageCount%>">尾页</a> | 转到第
<select name="sel_page" onChange="javascript:location=this.options[this.selectedIndex].value;">
<%
for i = 1 to rs88.PageCount
if i = intpage then%>
<option value="search.asp?page=<%=i%>" selected><%=i%></option>
<%else%>
<option value="search.asp?page=<%=i%>"><%=i%></option>
<%
end if
next
%>
</select> 页 </font>
</td>
</tr>
</table>
</form>
<%
rs88.close
set rs88=nothing
conn.close
set conn=nothing
%>
请复制上面的代码,保存为:search.asp ,希望你能满意!!!
如果有不明白的地方请用网络HI我!