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!

Recent content by GIGN

  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

    calling code behind proceure from Javascript function. Possible?

    Set the arguments in the form - __EVENTTARGET and __EVENTARGUMENT - and then submit it - this will route to the object you specify - mind you, it has to be set up to handle it, do you mean call a method belonging to your page class?
  4. GIGN

    I need to print...

    For an IE solution use window.onbeforePrint to hide items you don't want printed - and onAfterPrint to reinsert them. This means print selection from any source - context menu, File Menu etc is all catered for. Other browsers you can only do it from a print button you insert - so File-->Print...
  5. GIGN

    server files needed for crystal reports

    Make sure it is installed too - and make sure all components have been selected - Visual Studio.Net setup disk 1 <bb/>
  6. GIGN

    crystal reports not working

    I had to re-install the Crystal Reports components from the Visual Studio.net installation disk - now works fine <bb/>
  7. GIGN

    crystal reports not working

    I have also tried creating the objects programatically - this works - I can load my report -BUT then when I go to add the viewer to my pages Controls collection - I get the same error. What is going wrong?
  8. 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...
  9. GIGN

    Response Caching

    Turns out they are right when they say VaryByParam must be set - also need to do this when setting Caching programmatically: ... Response.Cache.SetCacheability(HttpCacheability.Public); Response.Cache.SetExpires(System.DateTime.Now.AddSeconds(60)...
  10. 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)...
  11. GIGN

    Cache dependencies

    Yeah, I am of a similar opinion, I will have to implement cache insertion by anything which modifies a cache dependency. I just can't stand things which don't work for seemingly no reason. It would be nice to have a global handler though ;-) <bb/>
  12. GIGN

    Changing date format

    //---------------------------------------------------------------------------------------------- // Application_BeginRequest(sender:Object, e:EventArgs):void //---------------------------------------------------------------------------------------------- protected function...
  13. 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...
  14. GIGN

    databinding child controls

    It turns out we have to manually add child nodes to the controls collection if they are parsed as attributes - and then DataBind them. This can be done the other way too, by searching the Controls collection, and matching NamingContainer - and getting the parameters that way. <bb/>
  15. 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/>

Part and Inventory Search

Back
Top