I have a need to create a menu structure at runtime that is completely dynamic. I have looked at using a Menu Control Array, but this will not work in my case due to the need to have branching sub-menus...
Is there a way to create menus at runtime, that includes the ability to show submenus...
It did help. I now realize that if I want to force a file to download I need to add the line:
Response.AddHeader "Content-Disposition","attachment;filename=Mypdf.pdf"
and if I want to use the plug-in I should omit it.
Thanks.
I have written a page that will display/download files stored as blobs in a database. Everything seems to be working just fine, except for one thing. If the MIME-type requires a plug-in to display properly, it does not use the plug-in. It just prompts the user to download/open the file. If...
You will likely need to add an index to the table(s) effected by the queries.
You could either add the index to the tables directly, based on the search criteria in you query...simply put and an index to the table for main filter in your where clause.
Or you could use the Index Tuning Wizard...
Try this.
CREATE PROCEDURE StoredProcedure1 AS
UPDATE ADOPT
SET ADOPT.BrsID = (Select tblBrsCodes.BrsID
FROM ADOPT, tblBrsCodes
WHERE tblBrsCodes.BrsCode = ADOPT.brsno
AND tblBrsCodes.road = ADOPT.road)
GO
I am looking to develop a mirrored database system wherein two database servers would be Publisher/Subscriber. Is it possible to Replicate/Mirror SQL Server 7.0 databases without additional software?
I am really just looking for a confirmation that my assumptions are correct.
Thanks in...
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.