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: clyde11
  • Order by date
  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.
  16. clyde11

    datetime format issue

    Hi all, I have a view with a datetime column, when viewing the column data the format is: " 2006-06-12T12:00:00.0000000+03:00 " while i'm only want to see the date part (that is, 2006-06-12, and if possible in the format: dd/mm/yyyy) now, when i'm using convert( varchar(10)...
  17. clyde11

    wss - increase web part's timeout

    Hi all, I'm using this web service in a share point page, which shows sql queries in wss format, the sql procedure's running time is more than 7 seconds and sometimes i'm getting the error msg: "The Web Part has timed out." anyone knows how to increase web part time out ?? Best, C.
  18. clyde11

    improve running time...

    Hi all, I have an access to some table which i can't change, only select statements and stuff. there are some values in a specific column in this table which are *NULL* values, in each place of this NULL value i want to show a very specific value, that is calculated in a UDF (user defined...
  19. clyde11

    changing column in a view

    Thanks, i figured this one out (with a little help from my friends..) maybe i wasn't so clear, i wanted to change all the *NULL* values to be a function of some other column, i solved it like this: select col1, isnull( [col2], some_func( [col1] ) as col1 from table -- when some_func is a...
  20. clyde11

    changing column in a view

    Hello all, I'd like to create a view which shows all specific column values (null values for example) as calculated values from another column, if for example i have the table: --------------- | col1 | col2 | |------|------| | 123 | null | | 126 | 9 | --------------- i would like the view...

Part and Inventory Search

Back
Top