Does anyone know where I would get a very good Calendar/Scheduler type control. What I am looking for must be something like the day, work week, week and month view of Outlook. It needs to be very programmable in that I can enter multiple tasks per day and give them different color backgrounds...
Where is the position of the #include to add the file m_IdentityFunction.asp ?, if this is at the begining of your ASP pages before the <HTML> tag then just put your re-direct code at the top of this file otherwise unfortunately you must put a new #include file into those ASP pages that users...
Hi dvannoy,
No do the following
strpath = InputBox$("Enter file name:")
' check that something was entered and append .jpg
if Len(strpath) > 0 then
strpath = Left(strpath, Len(strpath)) & ".jpg"
end if
Hope this helps.
Hi dvannoy,
assuming that the name of your search string variable is searchstr and the name of your inputbox is inputboxvalue then the following should work.
searchstr = Left(inputboxvalue, Len(inputboxvalue)) & ".jpg"
Hi Angelina,
assuming your table name is Table1, the following query will do it for you;
SELECT Table1.data AS Data,First(Table1.primary) AS Primary, First(Table1.description) AS Description, Sum(Table1.amount) AS Amount
FROM Table1
GROUP BY Table1.data
ORDER BY First(Table1.primary)...
This example should help you,
assume for the example that the MY_KEY is the record identifier
that is populated by whatever is in IN_DATA1.
INSERT INTO MY_TABLE
(MY_KEY,
MY_F1,
MY_F2)
SELECT IN_DATA1,
IN_DATA2,
IN_DATA3
FROM IN_TABLE
WHERE not exists
(SELECT NULL FROM...
Oops there was a syntax erro in the last posting (sorry!) this is try this instead;
myconn="Put your database connection string in here"
set rs = server.CreateObject("ADODB.Recordset")
getcountsql = "select count(*) from tb_System"
rs.Open getcountsql, myconn,1,2...
Try This,
myconn="Put your database connection string in here"
set rs = server.CreateObject("ADODB.Recordset")
getcountsql = "select count(*) from tb_System"
rs.Open getcountsql, myconn,1,2
if not rs.eof and not rs.bof then
Response.Write("Total Record...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.