Click here to Skip to main content
15,900,973 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Ajax enabled page stops responding after kept idle for some time. Pin
Member 56545116-Mar-09 18:49
Member 56545116-Mar-09 18:49 
QuestionWeb service? Pin
Karthick_gc16-Mar-09 1:54
Karthick_gc16-Mar-09 1:54 
AnswerRe: Web service? Pin
Blue_Boy16-Mar-09 2:03
Blue_Boy16-Mar-09 2:03 
AnswerRe: Web service? Pin
SeMartens16-Mar-09 2:11
SeMartens16-Mar-09 2:11 
AnswerRe: Web service? Pin
Abhijit Jana16-Mar-09 2:19
professionalAbhijit Jana16-Mar-09 2:19 
Questionrebind parent grid from chield Pin
bikash pattanayak16-Mar-09 1:33
bikash pattanayak16-Mar-09 1:33 
AnswerRe: rebind parent grid from chield Pin
San0216-Mar-09 2:15
San0216-Mar-09 2:15 
AnswerRe: rebind parent grid from chield Pin
ToddHileHoffer16-Mar-09 5:02
ToddHileHoffer16-Mar-09 5:02 
I will tell you how I have done this in the past.

But a button on your page in design view.

Double click the Button1to get an new method in the code behind. In that method put the code you want to run to update the parent grid...

In the page_load add

Button1.Style.Add("display", "none");

Create a javascript method on the markup

function UpdateGrid() {

var Button1 = document.getElementById("<%=Button1.ClientID %>");
Button1.click();
}

Call UpdateGrid(); in javascript when your window closes or when you need to.


I didn't get any requirements for the signature


Questionbest way to provide downloading of odd files on your website Pin
L Viljoen16-Mar-09 1:32
professionalL Viljoen16-Mar-09 1:32 
AnswerRe: best way to provide downloading of odd files on your website Pin
Vimalsoft(Pty) Ltd16-Mar-09 2:42
professionalVimalsoft(Pty) Ltd16-Mar-09 2:42 
GeneralRe: best way to provide downloading of odd files on your website Pin
L Viljoen16-Mar-09 2:48
professionalL Viljoen16-Mar-09 2:48 
Questioncan we add connection string in global.asax??? Pin
nkmkrishna16-Mar-09 0:59
nkmkrishna16-Mar-09 0:59 
AnswerRe: can we add connection string in global.asax??? Pin
San0216-Mar-09 1:04
San0216-Mar-09 1:04 
Questionhow to upload multiple file using single file upload control? Pin
keyur satyadev16-Mar-09 0:51
keyur satyadev16-Mar-09 0:51 
AnswerRe: how to upload multiple file using single file upload control? Pin
Christian Graus16-Mar-09 1:02
protectorChristian Graus16-Mar-09 1:02 
GeneralRe: how to upload multiple file using single file upload control? Pin
San0216-Mar-09 1:10
San0216-Mar-09 1:10 
GeneralRe: how to upload multiple file using single file upload control? Pin
Christian Graus16-Mar-09 9:35
protectorChristian Graus16-Mar-09 9:35 
GeneralRe: how to upload multiple file using single file upload control? Pin
San0216-Mar-09 19:48
San0216-Mar-09 19:48 
Questionwhat is the best way Pin
prasadbuddhika16-Mar-09 0:44
prasadbuddhika16-Mar-09 0:44 
AnswerRe: what is the best way Pin
San0216-Mar-09 1:01
San0216-Mar-09 1:01 
GeneralRe: what is the best way Pin
prasadbuddhika16-Mar-09 1:27
prasadbuddhika16-Mar-09 1:27 
GeneralRe: what is the best way Pin
San0216-Mar-09 1:38
San0216-Mar-09 1:38 
Questionchanging the data type fields using asp.net Pin
a.stevens16-Mar-09 0:19
a.stevens16-Mar-09 0:19 
AnswerRe: changing the data type fields using asp.net Pin
Christian Graus16-Mar-09 0:36
protectorChristian Graus16-Mar-09 0:36 
GeneralRe: changing the data type fields using asp.net Pin
a.stevens16-Mar-09 14:22
a.stevens16-Mar-09 14:22 

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.