Click here to Skip to main content
15,909,324 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDownloading from FTP Pin
vijay_chaudhary10-May-07 19:42
vijay_chaudhary10-May-07 19:42 
QuestionRe: Downloading from FTP Pin
steffw10-May-07 21:00
steffw10-May-07 21:00 
AnswerRe: Downloading from FTP Pin
vijay_chaudhary11-May-07 1:21
vijay_chaudhary11-May-07 1:21 
Questionhow to maitain session between asp and asp.net Pin
sooreeagt10-May-07 18:18
sooreeagt10-May-07 18:18 
AnswerRe: how to maitain session between asp and asp.net Pin
PSK_10-May-07 19:30
PSK_10-May-07 19:30 
Questionflaky results with multiple listboxes Pin
foobarDividedByZero10-May-07 11:26
foobarDividedByZero10-May-07 11:26 
AnswerRe: flaky results with multiple listboxes Pin
Guffa10-May-07 12:02
Guffa10-May-07 12:02 
GeneralRe: flaky results with multiple listboxes Pin
foobarDividedByZero10-May-07 12:25
foobarDividedByZero10-May-07 12:25 
I am returning via the back button. This is an intranet site, so these are actual word and excel docs on the network that i am linking to, not aspx pages.

this is pretty much all the code there is...
<asp:ListBox ID="lstMemos" runat="server" OnSelectedIndexChanged="lstMemos_SelectedIndexChanged"
AutoPostBack="true" Rows="10" Width="90%"></asp:ListBox>


protected void Page_Load(object sender, EventArgs e) {
if (!this.IsPostBack) {
//populate memos
string folderToBrowse = Server.MapPath(memoPath);
DirectoryInfo dirInfo = new DirectoryInfo(folderToBrowse );

foreach (FileInfo fileItem in dirInfo.GetFiles()) {
lstMemos.Items.Add(fileItem.Name);
}
}

//I populate 2 more listboxes here - same code
}

//there are 2 more functions just like this for the other 2 listboxes
protected void lstMemos_SelectedIndexChanged(object sender, EventArgs e) {
Response.Redirect(Path.Combine(memoPath, lstMemos.SelectedItem.Text));
}
Questionsingle sign on asp.net and apache Pin
pat3d210-May-07 10:53
pat3d210-May-07 10:53 
QuestionTrimming SQLDataSource Data Pin
eggie510-May-07 9:59
eggie510-May-07 9:59 
AnswerRe: Trimming SQLDataSource Data Pin
enjoycrack10-May-07 14:58
enjoycrack10-May-07 14:58 
AnswerRe: Trimming SQLDataSource Data Pin
Sandeep Kumar10-May-07 20:23
Sandeep Kumar10-May-07 20:23 
QuestionI just want the time to appear Pin
yasso_11510-May-07 9:31
yasso_11510-May-07 9:31 
AnswerRe: I just want the time to appear Pin
SimulationofSai10-May-07 9:54
SimulationofSai10-May-07 9:54 
GeneralRe: I just want the time to appear Pin
yasso_11510-May-07 10:13
yasso_11510-May-07 10:13 
GeneralRe: I just want the time to appear Pin
enjoycrack10-May-07 15:53
enjoycrack10-May-07 15:53 
QuestionseSendin mail in asp.net Pin
aransiola10-May-07 9:02
aransiola10-May-07 9:02 
AnswerRe: seSendin mail in asp.net Pin
enjoycrack10-May-07 15:52
enjoycrack10-May-07 15:52 
AnswerRe: seSendin mail in asp.net Pin
Sandeep Kumar10-May-07 20:30
Sandeep Kumar10-May-07 20:30 
GeneralRe: seSendin mail in asp.net Pin
aransiola10-May-07 22:40
aransiola10-May-07 22:40 
Questionasp.net DatePicker control Pin
aransiola10-May-07 8:43
aransiola10-May-07 8:43 
AnswerRe: asp.net DatePicker control Pin
enjoycrack10-May-07 15:54
enjoycrack10-May-07 15:54 
AnswerRe: asp.net DatePicker control Pin
varshavmane10-May-07 19:14
varshavmane10-May-07 19:14 
Questiongridview with Edit option Pin
aransiola10-May-07 8:37
aransiola10-May-07 8:37 
AnswerRe: gridview with Edit option Pin
Sherin Iranimose10-May-07 18:02
Sherin Iranimose10-May-07 18:02 

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.