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 IamaSherpa 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: *

  1. Trebor100

    Session variables converter?

    correction on my quick typing of current state: private List<FileUpload> files; Session["files"] = files; files= Session["files"];
  2. Trebor100

    Session variables converter?

    Morning all, I'm in need of some help with something I really should know but for the life of me I can't get to work!!! I'm trying to pass a list of file uploaders into and out of a session variable. ie: private List<FileUpload> files; Session["files"] = List; List = Session["files"]...
  3. Trebor100

    CompositeControl &amp; CustomValidator

    Ignore this - blumin validate empty string was not set! DOH!!
  4. Trebor100

    CompositeControl &amp; CustomValidator

    Morning everyone, I hope someone out there can help me here as I'm sure I'm slowley going mad! I'm trying to get a CustomValidator working on my CompositeControl. The control is being added fine during the CreateChildControls: titleVal = new CustomValidator(); titleVal.Display =...
  5. Trebor100

    CustomValidator ValidateEmptyText

    function doStuff(sender, args) { alert("moooo"); } doStuff will ultimatley do alot. It will be checking a series of other fields to determine if this field becomes mandatory. I'd ideally like to do this without postbacks turning controls on / off etc. The validation aspect will be easy...
  6. Trebor100

    CustomValidator ValidateEmptyText

    Afternoon all, I'm hoping that someone can save me from drink tonight by helping out on this one. I have a CustomValidator as follows: <asp:CustomValidator ID="customVal_1" runat="server" ValidateEmptyText="true" ControlToValidate="textBox" ClientValidationFunction="doStuff"...
  7. Trebor100

    Wav to text assistance

    Afternoon all, I've just started playing with SAPI - i've got the text to wav working fine however I'm trying to get a wav to text converter written also. I've got a problem whereby the recognition event isnt fired in the code below: wavfile = "c:/ccs_audio/111.wav"; wavrecocontext =...
  8. Trebor100

    references - new versions?

    I have a .net solution that uses references. How does .net get a newer version of a dll (active X)? Does it check the version number? the date time stamp? This comes from a 3rd party api that have released a new dll which a web service is not picking up.
  9. Trebor100

    Open MS Access bypassing the autoexec.

    Correct on function: Function GetMdbVersion(l_Mde) on error resume next Dim l_AVer Dim l_Acc Set l_Acc = CreateObject("Access.Application") l_Acc.SendKeys("+") l_Acc.OpenCurrentDatabase (l_Mde ) l_AVer =l_Acc.CurrentDB.Properties("AccessVersion")...
  10. Trebor100

    Open MS Access bypassing the autoexec.

    All - i'm having problems getting the MS Access version of a database. I am using the following function: Function GetMdbVersion(l_Mde) on error resume next Dim l_AVer Dim l_Acc Set l_Acc = CreateObject("Access.Application") l_Acc.AutomationSecurity = 3 l_Acc.SendKeys("+")...
  11. Trebor100

    asp.net httphandler calling on all web requests

    Hello, I'm currently working on a solution that injects branding into all web requests. I've gone down the asp.net httphandler route as the majority of our web solutions use this framework. My question is this: How do I call this asp.net component on say classic ASP, JSP web requests? I'm...
  12. Trebor100

    httpmodule header / footer speed issue

    problem now sorted - it needed a catch for WebResource.axd in the begin request... Most odd
  13. Trebor100

    httpmodule header / footer speed issue

    Just found this: "HTTPModule that modifies the response output stream seems to break WebResources.axd" all is not well in Rob-land. any thoughts / solutions to this?
  14. Trebor100

    httpmodule header / footer speed issue

    Back on this one again - the use of the httphandler has stopped the required field validators from working on the .net solution. Has anyone run into this before or know the cause of this?
  15. Trebor100

    httpmodule header / footer speed issue

    Thanks for all the help / pointers everyone. Cache worked great and performance is now at a good level.
  16. Trebor100

    response.redirect?

    Hi all, fingers crossed this is a quick and easy question. I'm doing an error control page that attempts to redirect you to your destination every 20 seconds. The error page loads a-okay and redirects when the page is up however if the page is still down i get the diagnose windows connection...
  17. Trebor100

    httpmodule header / footer speed issue

    Hi Mark, The scraping is to get the content of the header and footer to inject into the page. Cheers, Rob
  18. Trebor100

    httpmodule header / footer speed issue

    Jason your a legend - I'll start the google-ing of HttpContext.Cache and see how I get on. I'll probably come back with a hundred questions on its use in this context over the next few days. I take your point on hard coding the header / footer. I'm thinking of adding the cache and adding a...
  19. Trebor100

    httpmodule header / footer speed issue

    Hi Jason, Sorry for the lateness is my response – it has been like a mad house! With regards to point 2 (asp.net cache). How would you achieve this? I’ve added <add name="OutputCache" type="System.Web.Caching.OutputCacheModule"/> To the web.config of my test application however wont this...
  20. Trebor100

    httpmodule header / footer speed issue

    Hi Jason, I've been doing some time testing on the solution and it appears the scrapping of the html from the header / footer is the big slow down. The code for the scrape is as follows: string url = "http://google.com"; string strResult = ""; WebResponse objResponse; WebRequest...

Part and Inventory Search

Back
Top