Click here to Skip to main content
15,887,343 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionResponse.Redirect in IFRAME Pin
percyvimal9-May-06 1:50
percyvimal9-May-06 1:50 
AnswerRe: Response.Redirect in IFRAME Pin
Guffa9-May-06 2:23
Guffa9-May-06 2:23 
GeneralRe: Response.Redirect in IFRAME Pin
percyvimal9-May-06 7:59
percyvimal9-May-06 7:59 
QuestionHow to display Live Time in asp.net web file? Pin
Dipan Patel From Gandhinagar9-May-06 1:41
Dipan Patel From Gandhinagar9-May-06 1:41 
AnswerRe: How to display Live Time in asp.net web file? Pin
KrIstOfK9-May-06 2:02
KrIstOfK9-May-06 2:02 
GeneralRe: How to display Live Time in asp.net web file? Pin
Dipan Patel From Gandhinagar9-May-06 2:09
Dipan Patel From Gandhinagar9-May-06 2:09 
GeneralRe: How to display Live Time in asp.net web file? Pin
KrIstOfK9-May-06 2:18
KrIstOfK9-May-06 2:18 
QuestionQUERY: Adding more JS/DOM attributes to DataGrids Pin
dhruba.bandopadhyay8-May-06 23:54
dhruba.bandopadhyay8-May-06 23:54 
I know that JavaScript lets us add:

ondragenter, ondragover, ondragleave, ondrop

events to normal HTML table td tags. This lets us do highlighting of
table cells/rows, and capture drag & drop events. So to handle
ondrop we can use JavaScript:

this.OnDrop = function(obj) {
obj.parentElement.style.backgroundColor = "white";
var strData = window.event.dataTransfer.getData("text");
this.InsertRow(obj.parentElement.rowIndex, strData);
window.event.cancelBubble = true;
}

The obj is the object that was dropped onto. So obj.parentElement is
the tr element, etc. Does all tr elements implicitly have a rowIndex
member which contains the row number of the table?

What am wondering is how can one add the ondrop="" attribute to a
table which was generated from a DataGrid? If it is not possible
adding JavaScript/DOM attributes to DataGrid's generated tables, then
is there any way to capture these window.events and knowing exactly
which DataGrid table row/cell it was dragged onto?

I was told to look for "DataGrid Overviews" at 4guysfromrolla.com but
could not find anything about it. Not even google.com could help. Is
there no drag and dropping support for ASP.NET datasource tables?
QuestionBulk Update into more than one table from a XML using Open XML Pin
NICE TO MEET8-May-06 23:48
NICE TO MEET8-May-06 23:48 
QuestionIncrementing Date..... Pin
Nagraj Naik8-May-06 23:35
Nagraj Naik8-May-06 23:35 
AnswerRe: Incrementing Date..... Pin
KrIstOfK8-May-06 23:39
KrIstOfK8-May-06 23:39 
GeneralRe: Incrementing Date..... Pin
Nagraj Naik8-May-06 23:52
Nagraj Naik8-May-06 23:52 
GeneralRe: Incrementing Date..... Pin
KrIstOfK8-May-06 23:57
KrIstOfK8-May-06 23:57 
GeneralRe: Incrementing Date..... Pin
Nagraj Naik9-May-06 0:11
Nagraj Naik9-May-06 0:11 
GeneralRe: Incrementing Date..... Pin
_AK_9-May-06 0:02
_AK_9-May-06 0:02 
GeneralRe: Incrementing Date..... Pin
_AK_9-May-06 0:07
_AK_9-May-06 0:07 
AnswerRe: Incrementing Date..... Pin
cheeken2u9-May-06 0:00
cheeken2u9-May-06 0:00 
QuestionProblem in accessing webservice Pin
sohne8-May-06 23:22
sohne8-May-06 23:22 
QuestionCrystal Reports Pin
Khepry8-May-06 23:20
Khepry8-May-06 23:20 
QuestionPopUp Window Problem Pin
cheeken2u8-May-06 23:15
cheeken2u8-May-06 23:15 
AnswerRe: PopUp Window Problem Pin
KrIstOfK8-May-06 23:37
KrIstOfK8-May-06 23:37 
Questionasp.net 2.0 gridview paging Pin
fmardani8-May-06 22:57
fmardani8-May-06 22:57 
AnswerRe: asp.net 2.0 gridview paging Pin
Paddy Boyd8-May-06 23:20
Paddy Boyd8-May-06 23:20 
GeneralRe: asp.net 2.0 gridview paging Pin
fmardani8-May-06 23:28
fmardani8-May-06 23:28 
GeneralRe: asp.net 2.0 gridview paging Pin
Paddy Boyd8-May-06 23:29
Paddy Boyd8-May-06 23:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.