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...
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...
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.
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...
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.
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
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...
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
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...
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...
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...
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...
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.
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)...
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.
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.