|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread |
Rating:
|
Display Modes |
|
|
|
Ajax Application Generator Generate database and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
|
|
#61
|
|||
|
|||
|
ok so is there a tutorial for installing IIS on Windows XP I'll probably be able to do it
Thanks |
|
#62
|
|||
|
|||
|
i have downloaded your tutorial and using it but this error comes....
I am using MDAC 2.8 ... I have given permissions ... and linked core to virtual path .... evry thing is done but get this error... I am using Win NT 2000 Professional Error Type: Microsoft VBScript runtime (0x800A01B6) Object doesn't support this property or method: 'match.SubMatches' /core/classes/aspTemplate.asp, line 277 i havent changed any thing .....in the aspTemplate.asp file i am using it as it is help |
|
#63
|
|||
|
|||
|
irfan
hello
i want to ask about , that how we can pass value to parametr declare in crystal report in ASP, also how we can use crystal report in ASP |
|
#64
|
||||
|
||||
|
Quote:
If your question does not pertain to this tutorial, then create a new thread for your question. |
|
#65
|
|||
|
|||
|
good day
i really dont have any idea how to make asp files.
ive use asp companion and i reallt dunno if it works. i just need a simple script for my case study. An asp file that can be use in log-ins and (view,edit,delete,save and appends data) i badly needed help. pls i dont have any webserver thats why i tried to download my asp file(from asp companion) and so much to my despair, still nothing happened. i have to finish this before february ends. |
|
#66
|
|||
|
|||
|
correction
Quote:
i mean i dont have any webserver thats why i tried to upload my asp file(from asp companion) in 1asphost.com and so much to my despair, still nothing happened. i have to finish this before february ends.[/ |
|
#67
|
||||
|
||||
|
Read my post above...
If your post DOES NOT have anything to do with this tutorial, then don't post your question here! |
|
#68
|
|||
|
|||
|
Hello Memnoch
Thanks a lot for your tutorial.But it is quite difficult to start with it. http://localhost/tutorial/website/index.asp i call it but i get following error. Active Server Pages ASP 0126 (0x80004005) '/core/classes/aspTemplate.asp' has not founds /tutorial/website/index.asp, line 1 I have C:\Inetpub\wwwroot\Tutorial all folder. C:\core C:\TutorialDatabase What should i do for this error?Your tutorial seems to be very difficult for me. |
|
#69
|
||||
|
||||
|
Have you created the "core" Virtual Directory in IIS pointing to the core folder on your C:?
|
|
#70
|
|||
|
|||
|
Quote:
Greetings |
|
#73
|
|||
|
|||
|
hi sir :
I downloaded your Tutorial and run it. but I got following errors: ASPTemplate Error: File [whatsnew.html] does not exists! Microsoft OLE DB Provider for ODBC Drivers 错误 '80004005' [Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序 /core/modules/common.asp,行 69 |
|
#74
|
||||
|
||||
|
Make sure the site is setup properly.
Make sure the whatsnew.html file exists within the /templates directory. |
|
#75
|
|||
|
|||
|
when I change the code
in Common.asp file Code:
function db_open(connectionStringPayload)
connectionStringPayload = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\TutorialDatabase\Tutorial.mdb;"
if isObject(objConn) then
if objConn.state = 0 then
set objConn = server.createObject("ADODB.CONNECTION")
objConn.open connectionStringPayload
db_open = true
else
db_open = false
end if
else
set objConn = server.createObject("ADODB.CONNECTION")
objConn.open connectionStringPayload
db_open = true
end if
end function
in index.asp file Code:
t.SetTemplatesDir "templates/" the index page works |