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

ASP.NET

 
GeneralRe: Listbox Dropdownlist SelectedIndex resets after postback. Pin
Junior Boy15-Jun-07 0:36
Junior Boy15-Jun-07 0:36 
GeneralRe: Listbox Dropdownlist SelectedIndex resets after postback. Pin
Pierre14715-Jun-07 0:45
Pierre14715-Jun-07 0:45 
GeneralRe: Listbox Dropdownlist SelectedIndex resets after postback. Pin
goutham.sriharsha15-Jun-07 0:47
goutham.sriharsha15-Jun-07 0:47 
GeneralRe: Listbox Dropdownlist SelectedIndex resets after postback. Pin
Junior Boy15-Jun-07 1:12
Junior Boy15-Jun-07 1:12 
AnswerRe: Listbox Dropdownlist SelectedIndex resets after postback. Pin
Vasudevan Deepak Kumar15-Jun-07 2:39
Vasudevan Deepak Kumar15-Jun-07 2:39 
QuestionHow to keep an image on mouseover in skmmenu control Pin
goutham.sriharsha14-Jun-07 23:24
goutham.sriharsha14-Jun-07 23:24 
Questionreturning pop up value to the calling page Pin
ngrj14-Jun-07 23:07
ngrj14-Jun-07 23:07 
AnswerRe: returning pop up value to the calling page Pin
varshavmane14-Jun-07 23:45
varshavmane14-Jun-07 23:45 
First Put a frame.aspx in between child and parent form and do the following.
Use this in ur child form:

function AddDeptDesg()
{
var dept = document.all("<%=cmbDeptName.ClientID%>");
var desg = document.all("<%=cmbDesgName.ClientID%>");
var MyArgs = new Array();
MyArgs[0] = dept.options[dept.selectedIndex].value;
MyArgs[1] = desg.options[desg.selectedIndex].value;
window.returnValue = MyArgs;
window.close();
}

On Parent form:
function ChooseDept()
{
var winSettings = "dialogWidth:400px;dialogHeight:250px; help: no; status: no";
var values = window.showModalDialog("DeptFrame.aspx"," ", winSettings);
if(values)
{
values[0] += "," + values[1];
document.all("htxtDept").value = values[0];
return true;
}
else
{
return false;
}
}

Questionhow to update a gridview Pin
ballameharmurali14-Jun-07 22:55
ballameharmurali14-Jun-07 22:55 
AnswerRe: how to update a gridview Pin
varshavmane14-Jun-07 23:56
varshavmane14-Jun-07 23:56 
GeneralRe: how to update a gridview Pin
ballameharmurali15-Jun-07 0:45
ballameharmurali15-Jun-07 0:45 
GeneralRe: how to update a gridview Pin
varshavmane15-Jun-07 1:01
varshavmane15-Jun-07 1:01 
QuestionProblem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14714-Jun-07 22:44
Pierre14714-Jun-07 22:44 
AnswerRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Sylvester george14-Jun-07 22:54
Sylvester george14-Jun-07 22:54 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14714-Jun-07 22:58
Pierre14714-Jun-07 22:58 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
badgrs14-Jun-07 23:14
badgrs14-Jun-07 23:14 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14714-Jun-07 23:18
Pierre14714-Jun-07 23:18 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
badgrs14-Jun-07 23:31
badgrs14-Jun-07 23:31 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14715-Jun-07 0:07
Pierre14715-Jun-07 0:07 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14715-Jun-07 4:10
Pierre14715-Jun-07 4:10 
QuestionSending Email with attachment Pin
DKalepu14-Jun-07 21:50
DKalepu14-Jun-07 21:50 
AnswerRe: Sending Email with attachment Pin
Sylvester george14-Jun-07 22:20
Sylvester george14-Jun-07 22:20 
GeneralRe: Sending Email with attachment Pin
DKalepu14-Jun-07 22:34
DKalepu14-Jun-07 22:34 
AnswerRe: Sending Email with attachment Pin
N a v a n e e t h14-Jun-07 22:27
N a v a n e e t h14-Jun-07 22:27 
GeneralRe: Sending Email with attachment Pin
Sylvester george14-Jun-07 22:36
Sylvester george14-Jun-07 22:36 

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.