Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: GIGN
  • Content: Threads
  • Order by date
  1. GIGN

    Netscape 6.01 issues

    I have found a strange and annoying problem which only seems to occur with NS6.01. My databound DropDownLists are not loading properly from it seems. All the items are being loaded from viewstate - but the selected index is coming thru as 0. It's almose like it is being completely populated...
  2. GIGN

    enabling full-text indexing

    My option for this is grayed out - and when I try to run the stored procedure to enable it, it tells me the component is not installed - how do I install it? WinXP/SQL Server 2000 /SP2 <bb/>
  3. GIGN

    crystal reports not working

    No matter what I try I can't get a crystal report viewer to show up in my application. I am using Visual Studio.net. My pages never get to Page_Load even - the error occurs when it tries to load the viewer control - the error says NullReferenceException: Object reference not set to an...
  4. GIGN

    Response Caching

    I need to be able to toggle Response Caching, so my admin users see their newly inserted content - but cannot get it to work programmatically - it works ok to clear , but not t set expiry etc: Response.Cache.SetCacheability(HttpCacheability.Public)...
  5. GIGN

    Cache dependencies

    I have an XmlDocument which I am storing in Cache - and it has a dependency on a file. I am finding my callback method is being called very erratically - it works when I modify the xml myself, but when I save to it after submitting a form, the cache is emptied, but not replaced Any ideas...
  6. GIGN

    web.config

    I am having trouoble getting web.config to work. I came across a <location> element somewhere on the internet - but it is not mentioned anywhere at msdn. It is used to password protect files - which works fine for aspx ones, but not so well for .xml - why is this? <bb/>
  7. GIGN

    Parsign children of user controls

    I am having trouble getting the parser to create objects when it parse child nodes with a User Control, I have had no trouble when using a Server Control. I am filling an ArrayList with the child controls - but they are filled with nothing - no objects have been created. I think it has...
  8. GIGN

    databinding child controls

    I have the following: <Toolkit:XMLTransformer RUNAT=&quot;SERVER&quot; xslFilePath=&quot;xml/test.xsl&quot; xmlFilePath=&quot;xml/test.xml&quot; sessionID=&quot;<%# Session.SessionID%>&quot; debug=&quot;true&quot;> <Toolkit:Parameter Name=&quot;xmlFilePath&quot...
  9. GIGN

    Nested controls

    I have a dynamic control which creates elements depending on arguments given in the tag: <Custom:someTag param_1=&quot;some value&quot; .../> The ascx file contains a form - and depending on a value given I need to add a number of controls. this works fine if I want to just add the controls...
  10. GIGN

    declaring Namespace for webservice in Jscript

    For some reason I cannot get this to work - though the WebMethod stuff does - so how can I declare the namespace for my webservice using JSCRIPT. I have tried variations on : <%@ webservice language=&quot;JSCRIPT&quot; class=&quot;XMLFileManager&quot; %> import System; import System.Text...
  11. GIGN

    client XMLHTTP connection to webservice

    For some reason I cannot get a connection from client xmlhttp - I get an error returned: System.InvalidOperationException: Request format is invalid: . at System.Web.Services.Protocols.HttpServerProtocol.ReadParameters() at System.Web.Services.Protocols.WebServiceHandler.Invoke() at...
  12. GIGN

    Caching xml

    I have a reasonably large xml file which holds the data for a single page. I am not sure exactly why it is so big actually - it only has a page of HTML markup. Anyway it is around 80k, so I was wondering what methods I could use to speed things up, pehaps cache it. I have tried using expires...
  13. GIGN

    I have an XSL file which is the bas

    I have an XSL file which is the basis of a database sort of admin console. This sorts them into various categories etc. Then when I want to make a change to a node - I send the XPath and node position to the server, and the right node can be addressed. This works fine, apart from the sorting...
  14. GIGN

    Binary Read an FDF

    I have a pdf form which submits to ASP. I want to be able to take an entire fdf submission, and save as a file. This way I do not have to do any form parsing, this is good because there is 12 pages of form fields. The client can then come along - download the fdfs and open them in Acrobat...
  15. GIGN

    site search engine efficiency

    I am investigating a custom website search engine, which appears to be very straight forward, the basic idea I have is : - Visit and &quot;read&quot; each page searching for keywords. - Record results as xml. - Process xml and display ordered results. The principle is working, but I...
  16. GIGN

    AltBody for ASPMail

    ASPEmail has an AltBody attribute which can hold a plaintext version of an email: http://www.aspemail.com/ there is nothing similar for ASPMail that I can see, is there some header I can send which will display the correct format for the mail? <bb/>
  17. GIGN

    plaintext email formatting

    Due to some people not possesssing rich text formatting with their email - I need some way to send plaintext - but format it - so I can avoid an URL being broken - which stops it working. \n does not seem to work when i try using it in outlook. <bb/>
  18. GIGN

    conditional import

    I want to be able to import an I.E. specific style sheet, to fix some display differences, and it seems to be working, but will not overwrite the same styles which have been previously defined. So I want to import it and have it replace some of the styles, how come it does not work? There...
  19. GIGN

    include efficiency

    Just wonderng if anyone knows any links for ASP efficiency information. I just need to know the optimum include number. We need to have 3-4 includes on each page to enable extensibility [I hope that is a word] and maintainability. Is this number of includes extrememly inefficient? <bb/>
  20. GIGN

    alternative to htaccess

    evidently htaccess is a unix concept, even though some of my NT hosts seem to use it. What is a non-secure server alternative - is there one? <bb/>

Part and Inventory Search

Back
Top