a***e 发帖数: 188 | 1 I made a ASP project. I tried to tranfer the input data
from a form to an ASP file, and then transfer to another ASP
file. I use "post" as the method the form and the action is
the first ASP file. In this ASP file, I get the data and
session them. In the next ASP file, I tried to use Session
to retrieve them, but it doesn't work. I have sessioned
several variables in the second ASP file and they all
worked. Only the data that is transferred from the form
doesn't work. Could you please tell me |
|
w*******y 发帖数: 60932 | 2 Every year I'm motivated to post this info as the "deals" start to roll out
for tax software, and people start scrounging for versions which include the
state tax filing, etc.
You may have seen me post this before - if so, this is just a reminder. I'
ve tried to check for broken links, and think I got them all up to date.
Most state sites don't go live until January 17th, so you may need to be
patient.
States with free e-file for all required to file:
Link:
https://www.ftb.ca.gov/individuals/ef... 阅读全帖 |
|
o*******e 发帖数: 61 | 3 I user the updatepanel in master file as following:
EnablePartialRendering="true">
ChildrenAsTriggers="false" runat="server">
ControlID="Timer1" EventName="Tick" />
.... 阅读全帖 |
|
|
n*****t 发帖数: 41 | 5 谢谢,文件如下。我只要读取最后一个数,就是那个likelihood的数值。
MERLIN 1.1.2 - (c) 2000-2007 Goncalo Abecasis
References for this version of Merlin:
Abecasis et al (2002) Nat Gen 30:97-101 [original citation]
Fingerlin et al (2004) AJHG 74:432-43 [case selection for
association studies]
Abecasis and Wigginton (2005) AJHG 77:754-67 [ld modeling, parametric
analyses]
Fingerlin et al (2006) Gen Epidemiol 30:384-96 [sex-specific maps]
Chen and Abecasis (2007) AJHG 81:913-26 [qtl assoc... 阅读全帖 |
|
w*******y 发帖数: 60932 | 6 This a re-post of a thread that I compiled last year. The links are, for
the most part, from last year's post - many states have not updated their "e
-file" pages yet (several suggest that they'll be accepting returns on
January 18th).
Nonetheless, wanted folks to be able to get a jump start on planning (and
eliminate the "stress" of finding software with "free state returns" etc.,
if it's unnecessary.
If you post updates to the Wiki, or indicate up to date links to 2010, I
will keep the links... 阅读全帖 |
|
w*******y 发帖数: 60932 | 7 Tax Act 2010 Ultimate Federal and State for 11.90:
https://www.taxactonline.com/s_online_tax2010/introduction/registrationd.asp
?return_type=DLX&bun=ULT&fed_price_code=F800012&state_price_code=S800008&sc=
07103051103
For a limited time, you can lock in pricing to file both federal and state
taxes of only $11.90 total for both! ($6.95 and $4.95 respectively). This
package is usually 17.95. and while the link will say 30% off, it actually
33.7% off as the final price on your confirmation will sho... 阅读全帖 |
|
r*****3 发帖数: 143 | 8 中文名: ASP.NET 4.0 实战
原名: ASP.NET 4.0 in Practice
作者: Daniele Bochicchio
Stefano Mostarda
Marco De Sanctis
图书分类: 软件
资源格式: PDF
版本: 英文文字版/更新源代码
出版社: Manning
书号: 9781935182467
发行时间: 2011年
地区: 美国
语言: 英文
简介:
内容介绍:
ASP.NET is a massive framework that requires a large amount of know-how from
developers. Fortunately, this book distills over 100 practical ASP.NET
techniques from the experience of a team of MVPs, and puts them right at
your fingertips.
The techniques are tested and selected for their useful... 阅读全帖 |
|
L*******r 发帖数: 1011 | 9 ASP is implemented as an ISAPI extension (or application). ASP is a DLL (na
med asp.dll and usually found in one of the Windows system directories), and
IIS maps ASP files to the asp.dll. In this way, the ASP engine processes al
l requests for ASP pages. Without this mapping and DLL, the server would ret
urn ASP code to the browser, rather than the generated results. ASP pages th
emselves are scripts, combining server-side instructions (usually VBScript)
and client-side instructions (usually HTM |
|
|
p****o 发帖数: 220 | 11 If it is Active Server Page file, you can use IE to explore it. but you can't
read the source code. what you get is the server-side parsed HTML file.
If you have original .asp file in your local machine, any text editor can read
it. |
|
s***f 发帖数: 173 | 12 实现了点机BACK BUTTON, PAGE 被提示EXPIRES的功能.有对此功能一直有疑问的,可以来
看看.
Here we go, (FOUR files are required : A.asp B.asp C.asp login.asp by the
way)
A.asp
<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
If Len(Session("FirstTimeToPage")) > 0 then
'The user has come back to this page after having visited
'it... wipe out the session variable and redirect them back
'to the login page
Session("FirstTimeToPage") = "" |
|
l******9 发帖数: 579 | 13 【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: error of create ASP.net project in Visual Studio 2013
发信站: BBS 未名空间站 (Sun Nov 23 18:17:40 2014, 美东)
I would like to build a new project for ASP.NET Web API in Visual Studio
2013 on win 7.
I am doing a lab at:
http://www.asp.net/web-api/overview/getting-started-with-aspnet
But, in the first step of "Create a Web API Project", I followed the
instructions:
"In the New ASP.NET Project dialog, select the Empty template. Unde... 阅读全帖 |
|
L*******r 发帖数: 1011 | 14 我节选了一下
http://msdn.microsoft.com/msdnmag/issues/03/11/ASPColumn/default.aspx
What Exactly is ASP.NET?
ASP.NET is a library of classes designed to handle HTTP requests. In addit
ion to a class library, ASP.NET includes several IIS components for managing
requests. These components include an ISAPI DLL named ASPNET_ISAPI.DLL and
a worker process named ASPNET_WP.EXE. ASP.NET also installs new mappings in
IIS, redirecting file requests for ASPX, ASCX, ASHX, and ASMX to ASPNET_ISAP
I.DLL. From ther |
|
c*o 发帖数: 70 | 15 how to pass parameters from Javascript to .net such as C# code behind? For
example, there is a dynamic mouse move on and pop up menu implemented in
Javascript, once a menu item is selected, how to pass this menu item's value
to the C# code running on server? I only know this can be solved by using
embedded ASP tags <% ... %>.
Similar question, once we want to let the user upload file to the server, we
can use the HTML control to let users select a file name to
upload. How can we pas |
|
l******9 发帖数: 579 | 16 【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: error of create ASP.net project in Visual Studio 2013
发信站: BBS 未名空间站 (Sun Nov 23 18:17:40 2014, 美东)
I would like to build a new project for ASP.NET Web API in Visual Studio
2013 on win 7.
I am doing a lab at:
http://www.asp.net/web-api/overview/getting-started-with-aspnet
But, in the first step of "Create a Web API Project", I followed the
instructions:
"In the New ASP.NET Project dialog, select the Empty template. Unde... 阅读全帖 |
|
l******9 发帖数: 579 | 17 【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: error of create ASP.net project in Visual Studio 2013
发信站: BBS 未名空间站 (Sun Nov 23 18:17:40 2014, 美东)
I would like to build a new project for ASP.NET Web API in Visual Studio
2013 on win 7.
I am doing a lab at:
http://www.asp.net/web-api/overview/getting-started-with-aspnet
But, in the first step of "Create a Web API Project", I followed the
instructions:
"In the New ASP.NET Project dialog, select the Empty template. Unde... 阅读全帖 |
|
l******9 发帖数: 579 | 18 I would like to build a new project for ASP.NET Web API in Visual Studio
2013 on win 7.
I am doing a lab at:
http://www.asp.net/web-api/overview/getting-started-with-aspnet
But, in the first step of "Create a Web API Project", I followed the
instructions:
"In the New ASP.NET Project dialog, select the Empty template. Under "Add
folders and core references for", check Web API. Click OK."
I got error:
Configuring IIS express failed with the following error:
Filename :
\?\UNCmy_domainmy_nameIISE... 阅读全帖 |
|
C****n 发帖数: 2324 | 19 I think you are missing the point.
IIS can accept ASP by default, if you have .Net installed, IIS can accept ASP
and ASPX at the same time.
But this doesn't mean you want the ASP.NET engine to interpret an ASP file,
which will get error anyway.
But your error is another story.
ASPX engine runs under user ASPNET instead of IUSER_???, ASPNET has limited
access to your harddrive.
Go to check the access right of ASPNET, and make it a member of Administrators
will solve your problem. :-) Or if you wa |
|
r****y 发帖数: 26819 | 20 今年7月O'relly开源会议上covalent公司展示了他们的产品,据说可以将Apache和
ASP.NET结合起来。但是太贵了,卖到1500美元左右。
Apache和ASP可以用Perl的module结合起来。但是过时了。
以下文章是我在google的搜索结果,还没来得及测试,先贴在这里备忘。
Cassini is a web server written in C#, you'll find more information about it
at http://www.asp.net/
These simple steps gets Apache up and running with ASP.NET
Download and install Apache 2.x for Windows (remember to stop IIS)
Modify the http.conf file: #
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_ |
|
l********1 发帖数: 486 | 21 【 以下文字转载自 Military 讨论区 】
发信人: liangzhi01 (良知01), 信区: Military
标 题: 这才是平权: 80-20 Filed A Supreme Court Brief on May 29th.
发信站: BBS 未名空间站 (Mon Jun 4 16:12:45 2012, 美东)
(上大学是要凭真才实学而不是考虑种族因素,歧视低智商是理所当然而考虑种族因素是
歧视. 结婚是两性的结合,歧视性变态是天经地义.变态们是玷污平权).
80-20 Filed A Supreme Court Brief on May 29th.
http://www.80-20educationalfoundation.org/pdf/amicus-brief.pdf .
It attracted a huge amount of media attention, mainstream
and ethnic! See footnote at the end.
Strangely, America listening is not enough, b... 阅读全帖 |
|
z***a 发帖数: 138 | 22 My web app needs to write to a text file in a mapped folder on file
server.
On file server:
D:\ is shared
D:\IT\ is shared and mapped to I:\
D:\IT\MyFolder\ is created by me and set shared
I have done the following:
Create a user (IUSR_blahblah) with password at my local computer
Create same user and password at file server
Grant the user share permission to
D:\
D:\IT (I:\)
D:\IT\MyFolder\
Code impersonation in webpage code
However, my web app can not access file server C:\ drive, D:\ shared
dr... 阅读全帖 |
|
e*****n 发帖数: 11 | 23
I have made a simple COM using VB, it runs good in VB and
can start an .exe
file, but when I try to call the method in asp, it does not
work. The IE just go over the asp page and did nothing.
Here is how I call the method in asp:
<%
Dim oDoc
Set oDoc = Server.CreateObject("test.ClsServer")
oDoc.trigger
%>
test is the name of the COM, ClsServer is the class name and
the trigger is the method name.
Can you see any problem?
Thanks. |
|
w*****o 发帖数: 92 | 24 我写的一个ASP project,非常普通的那种,能在大多数
的IIS上运行,但是在我两位朋友的机子上老有问题,只要
一调我的ASP file,他们的机子就会有这种现象:
先是页面老出不来,只见状态栏的蓝条一直在动,过了一会,
出现错误信息页面,云网站太忙,太多用户连接等等,可
明明在自己的local上调试啊!而且只要出现这种错误页面后,
再也看不了别的网页了。除非重新启动机器。
不知是asp的问题,还是iis的问题?那位有此种经验的朋友支个招 |
|
|
N**e 发帖数: 158 | 26 Just learn some COM programming and made this fine tool for
file upload. It will work for files of any size. If you want
to add file upload support for your website, get it at:
http://miniwhale.com/prog/MwFile/MwFile.zip
Sample files illustrating usage is included.
It will work for multiple files uplading as well. |
|
e*****n 发帖数: 11 | 27 Like one small asp file that can automatically invoke
software, like notepad at the server side. Anyone can write
such small file for me? Very appreciate!!! |
|
i**p 发帖数: 902 | 28 This is an asp file.
<%
ABC = 10000
page = 1
if ( page >= ABC ) then
Response.write ("page is large than ABC")
else
Response.write ("page is less than ABC")
end if
%>
Tell me, what will you see after you run it? |
|
w*******y 发帖数: 60932 | 29 mwave has IOGEAR GCS661U USB laptop KVM switch with file transfer:
http://www.mwave.com/mwave/SKUSearch.asp?scriteria=5134311
for $9 + FS
Description:
The USB Laptop KVM Switch is the innovation from IOGEAR, combining easy
switching and convenient file transferring between two computers. It allows
the user to seamlessly control a second computer with a laptop as the
console. The KVM features a toolbar with multiple functions such as file
transfer, desktop image scaling and others. With its des... 阅读全帖 |
|
w*******y 发帖数: 60932 | 30 IOGEAR GCS661U USB laptop KVM switch with file transfer $4.99 f/s ac
$5 OFF with Coupon Code "KVM5" (Expires 7/5/2011)
Link:
http://www.mwave.com/mwave/SKUSearch.asp?px=DS&scriteria=513431
Description:
The USB Laptop KVM Switch is the innovation from IOGEAR, combining easy
switching and convenient file transferring between two computers. It allows
the user to seamlessly control a second computer with a laptop as the
console. The KVM features a toolbar with multiple functions such as file
tra... 阅读全帖 |
|
P*****s 发帖数: 375 | 31 搞笑,居然还被mark了,这么麻烦的办法。
先用ghostview或其它的ps文件阅读器的Ps to Eps功能生成eps
文件,然后用photoshop或者paintshop或者其他普通的图像编辑
软件打开,然后save a copy as转存为gif或jpg或whatever ok.
举例而言,在http://www.cs.wisc.edu/~ghost/gsview/get33.html
当得免费ghostview软件,安装完毕后打开你的.ps文件,用File菜单
里的Convert功能, Device里选择jpeg, resolution往高里选 (越高
越好但是转换越慢生成文件越大), 然后ok即可, save as一个jpg
文件。注意!如果ps文件是多页的则要一页页地Convert。
如果这个办法还有问题,则从http://jasc.com/download_4.asp
当得免费paint shop图像编辑软件,安装后File打开你的eps文件。
(使用ghostview的File菜单里的Ps To Eps功能生成eps文件),然后
选择合适的resolution,打 |
|
s**o 发帖数: 584 | 32 write a .bat file
cd c:\xx\xx\folder1
ren *.htm *.asp
cd c:\xx\xx\folder2
ren *.htm *.asp |
|
J********r 发帖数: 7 | 33 I have .net installed in my machine and created one web application. It is
running fine. But I could not get the proper view when I copied those
files(project files, aspx file and dll file) to other machine with IIS
installed. Do I have to install .net in that machine also? Thanks. |
|
m**h 发帖数: 22 | 34 asp运行正常
sql server 运行正常
在ODBC Driver里设置了File DSN, 产生了一个名字叫sqlserver.dsn 的文件
运行下面这段code:
<%
'Create a connection object
Set cn = Server.CreateObject("ADODB.Connection")
'Open a connection; the string refers to the DSN
cn.Open "FILEDSN=sqlserver.dsn"
%>
出错信息如下:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E4D)
[Microsoft][ODBC SQL Server Driver][SQL Server]用户 'xxx\IUSR_xxx' 登录失败。//(xxx is the server name)
/myweb/testasp.asp, line 13
Any idea? thanks |
|
g***o 发帖数: 297 | 35 Daxias, please help!
I got a database file under my web directory. But I donot want use download it
from internet. But I still need use ASP to talk with this database,
so I need to change file access permission with execute and without read.
In file perpority, read and execute are in the same category, How can I check
read&execute while deny read? Thanks very much. |
|
b******r 发帖数: 1106 | 36 I have an asp.net application MyApp. After I set it to https
I cannot open the project file or solution file. Always get error saying
cannnot find the resource even after I have changed the webinfo file to point
to https://MyApp
Any suggestion?
Thanks a lot. |
|
c*****s 发帖数: 214 | 37 有些地方不兼容,不支持对父目录下文件的包含()。
再说ASP创建的那些COM对象,LINUX上哪儿找啊?
面 |
|
q**j 发帖数: 10612 | 38 【 以下文字转载自 Internet 讨论区,原文如下 】
发信人: qqzj (atrest), 信区: Internet
标 题: HOW TO UPLOAD A FILE INTO DATABASE
发信站: The unknown SPACE (Mon Jun 9 13:11:18 2003) WWW-POST
不好意思,又要问问题了. 老板让我reseach how to upload a file into database,
using asp.net. 我是刚刚来OFFICE的, 不知道怎么高, 请各为大侠帮忙, 谢谢了!
不知道我说请问题了没有,如果没有, 请回我! 谢谢! |
|
b***x 发帖数: 2 | 39 【 以下文字转载自 Internet 讨论区,原文如下 】
发信人: boylx (canon), 信区: Internet
标 题: How to remote access the Access Database file besides through System DSN?
发信站: The unknown SPACE (Fri Feb 18 17:40:11 2000) WWW-POST
In a Active Sever page, how to remote access a MDB file?
I've tried System DSN, but always failed:
1)NT/IIS, i added a new system DSN "test" into ODBC manager (in Control Panel)
2)in ASP
Set OBJdbConnection = Server.CreateObject("ADODB.Connection")
OBJdbConnection.Open "test"
3) But I always get |
|
q**j 发帖数: 10612 | 40 【 以下文字转载自 Internet 讨论区,原文如下 】
发信人: qqzj (atrest), 信区: Internet
标 题: HOW TO UPLOAD A FILE INTO DATABASE
发信站: The unknown SPACE (Mon Jun 9 13:11:18 2003) WWW-POST
不好意思,又要问问题了. 老板让我reseach how to upload a file into database,
using asp.net. 我是刚刚来OFFICE的, 不知道怎么高, 请各为大侠帮忙, 谢谢了!
不知道我说请问题了没有,如果没有, 请回我! 谢谢! |
|
u**********e 发帖数: 282 | 41 在任何情况下, xx.master.cs file有没有可能包含html-like content ( 就像 .
master file)?
遇到一个bug, 发现原因是一个xx.master.cs file 包含html-like content.
Originally it contains cs code. Don't know how/when it is converted to
html-like content which contains @master directive.
注: 本人不是 .net developer |
|
|
|
p******e 发帖数: 31 | 44 我想用ASP添加数据库record时,总是报错。
请问是怎么回事? 谢谢!
我的数据库并没有设为只读啊。
程序如下:
<%
dim db
dim strCon
db="access"
strCon="DRIVER={Microsoft Access Driver (*.mdb)};
DBQ=c:/Inetpub/wwwroot/name/name.mdb"
set db=Server.CreateObject("ADODB.Connection")
db.open strCon
%>
set res=Server.CreateObject("ADODB.Recordset")
res.Open "select * from
user",strCon,adOpenKeyset,adLockOptimistic
res.AddNew
res("pass")=pass
res("fname")=fname
res("lname")=lname
if city<>"" then
res("city")=city
....... |
|
D***u 发帖数: 189 | 45 I tried to run some asp page on my NT server. I put the file under
/intpub/wwroot. But when I tried to browse it, no response. I mean when I use
response to show some system information. No response. I don't know what
problem. Thank u. |
|
b*******s 发帖数: 470 | 46 don't u think it's the same, maybe even need more job, to create the batch
file as execute those commands one by one...
don't know if "ren *.htm *.asp /s" works... |
|
c********r 发帖数: 11 | 47
的
from IIS, classicasp.aspx is there and I do have source code there. It
contains some simple VBScritp. If I change classicasp.aspx to classic.asp.
everything is OK. So why IIS cannot access aspx file in the virusual
directory? |
|
C****n 发帖数: 2324 | 48 ASPNET user can't access your directory other than inetpub\wwwroot.
Change the access right for ASPNET. Or make your directory accessible to
ASPNET.
(Go to account management to find out about user ASPNET)
is
file,
limited
helpful
classic.asp. |
|
|
k****i 发帖数: 1072 | 50
以
者
place to place state(cache,application,viewstate,form post/query
string,session,context,config file,cookie),Page object model,iis and asp.net
security architect,authentication and authorization(IPrinciple),HttpModule and
HttpHandler,etc.This is exactly what I need.Implementation detail is just
trivial for programmers now,we need to know how the whole things work
together.
got many good articles from msdn talking about these things. But if there is a
book talking about the things I want,I wi |
|