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 Mike Lewis 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: kyern
  • Order by date
  1. kyern

    Odd Cdo problem

    I really wish that thread was the case, since I'm in an office network I can verify that individually there is no catch all. If that were the case though, no message would ever be received to the entered email. It is only when the priority is set that it doesn't get sent. Very very odd.
  2. kyern

    Odd Cdo problem

    Is there anyone that might have some ideas about whats happening here?
  3. kyern

    Content doesn't reload into div in IE

    Thank you for your suggestion, the problem is that I am already doing just that: var random_num = (Math.round((Math.random()*1000)+1)) var url = "whiteboard_output.asp?division=[%division%]&random=" + random_num To make sure it wasn't cached I've added headers tried forcing no cache through...
  4. kyern

    Odd Cdo problem

    I have a simple form that emails some values to a department, there is an optional field that when entered will send a copy to that recipient as well. All of this works well but recently I added the ability to set priority for certain types of messages. The priority portion works allright for...
  5. kyern

    Request.Form issue

    Am I missing a reference that I need or something? Its very weird that the values show up in the trace but I can't access them.
  6. kyern

    Request.Form issue

    That wont work for me though becuase I have to construct the name dynamcially. Also when I try to use the Me keyword I get: The type or namespace name 'Me' could not be found (are you missing a using directive or an assembly reference?)
  7. kyern

    Request.Form issue

    In update_table this line: string val = Request.Form[formName].ToString(); Response.Write(val); Every way I've thought of to use Request.Form results in a NullRef
  8. kyern

    Request.Form issue

    I have a weird problem that should have been very easy. I have a form with a lot of entries. When I try to pull a value after post back I get a NullRef. I turned tracing on and it shows that they are there, it shows the value I am expecting, but for some reason I cant retrive it. The code is...
  9. kyern

    Content doesn't reload into div in IE

    Mainly the problem is that after the page loads the first time, it should check the value and if the value is higher, meaning that there are more entries that need to be loaded, then it should replace the content of the div. The same Javascript is used to load the page the first time. In both...
  10. kyern

    Content doesn't reload into div in IE

    I asked this in the ajax forum but it doesn't look like any questions have been answered in there in quite a while. I have a really odd problem. I have a script that works in Firefox but doesn't in IE. There are no errors in firebug. All it does is make a request to a page to see if there are...
  11. kyern

    Content doesn't reload into div in IE

    I have a really odd problem. I have a script that works in Firefox but doesn't in IE. There are no errors in firebug. All it does is make a request to a page to see if there are any new items, if the value is greater than the one stored then it makes a new request for the content. I am...
  12. kyern

    Copy Node

    I am working with a wordml document. In the tag <w:pict> there is <w:binData> or there is some vml. Right now anything with the <w:binData> is working great. Right now I am just doing <xsl:template match="w:pict"> After this I need to create a case statement. If the next tag is <w:binData>...
  13. kyern

    AJAX Checkbox

    I have a large form that is used to enable / disable several categories of a report generator I am creating. Each category has a simple checkbox. I would really like to find a way to ajax enable this application. I am still extremely new to ajax. I figure to do this I need to make each...
  14. kyern

    Ajax Checkbox

    I have a large form that is used to enable / disable several categories of a report generator I am creating. Each category has a simple checkbox. I would really like to find a way to ajax enable this application. I am still extremely new to ajax. I figure to do this I need to make each...
  15. kyern

    Code Efficiency

    I have a report generator that is having some speed issues. What this does is loops over each category in the db per each category and performs and count on each one. The SQL queries are lightning fast, I even use getrows to get the data out quickly, but I think I should be able to use the...
  16. kyern

    Regex

    Excellent the combination of those worked perfect. David
  17. kyern

    Regex

    I am trying to find a regex that would allow only the characters allowed in the left half of an email address. It would fail if there was an @ sign or other special character not normally allowed. If anyone can help it would be very appreciated. Also if anyone knows of a good resource to...
  18. kyern

    Problem with Counter

    I have a strange issue with a counter I use to find out how long is spent on a form. On the majority of computers I have checked this works fine, on other computers it counts two times faster than normal and will only update the seconds portion instead of cascading to minutes. All computers...
  19. kyern

    ajax script

    Fantastic! That worked perfect. Thank You!
  20. kyern

    ajax script

    Ok, I think I'm going to go hit my head somewhere. It works perfect in firefox. It turns out that the setTimeout function is also working in IE. The difference is that in firefox, if a entry is added it actually puts new content in the div, in IE it isn't updating the page. Thanks for the...

Part and Inventory Search

Back
Top