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 dencom 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 clyde11

  1. clyde11

    dropdown list event issue

    Sure, (but in my app. i don't use a submit button, i'm using the AutoPostBack to fire the event when selection changed) Code: ====== <%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="WebApplication_to_delete_this_Proj.WebForm1" %> <!DOCTYPE HTML PUBLIC...
  2. clyde11

    dropdown list event issue

    Yes, the same happens, I’m choosing from a dropdown list, The "SelectedIndexChanged" handler simply do a Response.redirect() to other page, and from that page I’m clicking the "Back" IE button, When going back to the 1st page, the drop down list's selected item is the last one used (the last...
  3. clyde11

    dropdown list event issue

    Hi thanks, put the <body .. onload="document.forms[0].__EVENTTARGET.value=''"> in the .aspx html source and it's not working...(same thing happens, as described in the 1st post) Thanks, P.
  4. clyde11

    dropdown list event issue

    Hello all, I’m using this DropdownList’s webcpntrol, in an asp.net web application (C#) While making the AutoPostBack = “True”, When choosing a dropdown list item (let’s say in page1.aspx) the relevant handler is invoked and redirecting to diff. page when returning back to the 1st page...
  5. clyde11

    web application's session ending

    thanks guys, really helped ! i was adviced running a windows service that will do the job, in my case deleting some files in the web srver, files that are created with each session, so deleting them evry 24 hrs. will probably do... Thanks again P.
  6. clyde11

    web application's session ending

    Thanks, but i'm afraid i'm missing something here, in an asp.net web app. when the user close the IE window, it's means that that the session ends ? if so, then can't figure out why do the Session_End() do not invoked, Best, P
  7. clyde11

    web application's session ending

    Hello all, I'm writing an asp.net web application in C# i would like to invoke some function when the session ends (e.g, deleting some files from the web server directory) is there any function (like the Page_Load() func. that is being called every time the page is being load) that occires when...
  8. clyde11

    asp.net application exception

    thanks, it is a permission issue, the web master gave the server directory writing permissions and it was solved.....but still, can't really understand why the exception trace was pointing to my personal machine folder and not to the serever's folder.. Thanks, P
  9. clyde11

    asp.net application exception

    Hi all, I've written an asp.net web application that works just fine on my personal machine but when i moved it to the server folder there is this exception i'm getting while using export method of an OWC11 object. there are 2 things i don't really understand, 1. why do i get this exception on...
  10. clyde11

    System.Runtime.InteropServices.COMException problem

    Hi all, I'm developing a web application and using OWC10 (office web component), i've added the relevant COM component (OWC10) into my project, and it works just fine on my local machine, when i put it on some server and running the application an exception is raised due to the...
  11. clyde11

    ado.net, data grid view updating

    thanks, but what is the code inside UpdateView() ? Best, P.
  12. clyde11

    ado.net, data grid view updating

    Hello all, I'm reading a tutorial about updating an sql table using ado.net capabilities, in this example, using a data grid to get input values and update the needed row in the table, now, the problem is that i don't really understand what is the content of the "UpdateView()" function...
  13. clyde11

    sql server table update

    Hi all, first, I'm quite new to C#/asp.net/sql-server... now, i'm writing an asp.net web application using c#, (Visual studio 2003) in some point i want to give the user an option to update rows in a sql-server table, i'm kind of don't really know what is the best way to attack this issue...
  14. clyde11

    datetime format issue

    Guys, Thank you very much, that stuff helped a lot P.
  15. clyde11

    datetime format issue

    yes, it is a sqlserver datetime, i guees you are excepcting the "2006-06-12 12:00:00" format, but still, assuming i want only the "2006-06-12 " part being displayed and still maintain datetype type is it possible ? Thanks P.

Part and Inventory Search

Back
Top