Click here to Skip to main content
15,894,540 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to add verious control selected data to gridview Pin
Gandalf_TheWhite8-Feb-08 2:36
professionalGandalf_TheWhite8-Feb-08 2:36 
Questionwhat port does a web server connect to sql server Pin
eyeseetee7-Feb-08 23:56
eyeseetee7-Feb-08 23:56 
AnswerRe: what port does a web server connect to sql server Pin
ChrisKo8-Feb-08 9:24
ChrisKo8-Feb-08 9:24 
GeneralOnline Exam Application Pin
sjs4u7-Feb-08 23:30
sjs4u7-Feb-08 23:30 
GeneralRe: Online Exam Application Pin
Imran Khan Pathan7-Feb-08 23:47
Imran Khan Pathan7-Feb-08 23:47 
JokeRe: Online Exam Application Pin
SHatchard8-Feb-08 2:53
SHatchard8-Feb-08 2:53 
Generalwindow Close event Pin
sulabh20207-Feb-08 22:52
sulabh20207-Feb-08 22:52 
GeneralRe: window Close event Pin
Imran Khan Pathan7-Feb-08 23:20
Imran Khan Pathan7-Feb-08 23:20 
You can Icallback and execute your code in code behind side before closing window.check return argument and you can close window.
The other way is create one method in code behind side and call this method using javascript and close window
for example
In html source page
<a href="javascript:CloseWIN();" >Close</a>
In code behind side
function void CallMethod()
{
//code here
}

javascript
<script .................>
function CloseWIN()
{
<% CallMethod() %>
window.close();
}

please don't forget to vote on the post that helped you.
GeneralDetermining if a page is PostBack in JavaScript Pin
rajanandal7-Feb-08 22:33
rajanandal7-Feb-08 22:33 
GeneralRe: Determining if a page is PostBack in JavaScript Pin
Gandalf_TheWhite7-Feb-08 23:26
professionalGandalf_TheWhite7-Feb-08 23:26 
GeneralRe: Determining if a page is PostBack in JavaScript Pin
rajanandal7-Feb-08 23:45
rajanandal7-Feb-08 23:45 
GeneralRe: Determining if a page is PostBack in JavaScript Pin
Gandalf_TheWhite8-Feb-08 23:29
professionalGandalf_TheWhite8-Feb-08 23:29 
GeneralGetting ds data and binding to arraylist Pin
sjs4u7-Feb-08 22:01
sjs4u7-Feb-08 22:01 
Generalsql server to web server Pin
eyeseetee7-Feb-08 21:59
eyeseetee7-Feb-08 21:59 
GeneralRe: sql server to web server Pin
Vasudevan Deepak Kumar8-Feb-08 0:47
Vasudevan Deepak Kumar8-Feb-08 0:47 
GeneralRe: sql server to web server Pin
eyeseetee8-Feb-08 1:11
eyeseetee8-Feb-08 1:11 
GeneralRe: sql server to web server Pin
ChrisKo8-Feb-08 9:26
ChrisKo8-Feb-08 9:26 
GeneralRe: sql server to web server Pin
dilipv12-Feb-08 1:25
dilipv12-Feb-08 1:25 
Generaldate time conversion Pin
sumit70347-Feb-08 21:56
sumit70347-Feb-08 21:56 
GeneralRe: date time conversion Pin
Gandalf_TheWhite7-Feb-08 23:22
professionalGandalf_TheWhite7-Feb-08 23:22 
GeneralRe: date time conversion Pin
Gandalf_TheWhite7-Feb-08 23:28
professionalGandalf_TheWhite7-Feb-08 23:28 
Questionhow to find database path automatically in connection string in windows application Pin
Piyush Vardhan Singh7-Feb-08 20:42
Piyush Vardhan Singh7-Feb-08 20:42 
AnswerRe: how to find database path automatically in connection string in windows application Pin
Zeeshan Ahmed Memon7-Feb-08 21:08
Zeeshan Ahmed Memon7-Feb-08 21:08 
GeneralRe: how to find database path automatically in connection string in windows application Pin
Piyush Vardhan Singh7-Feb-08 21:27
Piyush Vardhan Singh7-Feb-08 21:27 
GeneralRe: how to find database path automatically in connection string in windows application Pin
Zeeshan Ahmed Memon7-Feb-08 22:18
Zeeshan Ahmed Memon7-Feb-08 22:18 

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.