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 strongm 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 Trebor100

  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.

Part and Inventory Search

Back
Top