Click here to Skip to main content
15,915,336 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to create a secure login page? Pin
hellohello8614-Aug-07 0:51
hellohello8614-Aug-07 0:51 
GeneralRe: How to create a secure login page? Pin
Jagadeesh Jupalli14-Aug-07 1:39
Jagadeesh Jupalli14-Aug-07 1:39 
GeneralRe: How to create a secure login page? Pin
leckey14-Aug-07 4:56
leckey14-Aug-07 4:56 
GeneralRe: How to create a secure login page? Pin
Christian Graus14-Aug-07 12:14
protectorChristian Graus14-Aug-07 12:14 
QuestionAsp.Net with Oracle Pin
Malayil alex13-Aug-07 23:35
Malayil alex13-Aug-07 23:35 
AnswerRe: Asp.Net with Oracle Pin
Christian Graus14-Aug-07 0:27
protectorChristian Graus14-Aug-07 0:27 
Questionproblem with ajax dropdownbox Pin
anujose13-Aug-07 23:31
anujose13-Aug-07 23:31 
AnswerRe: problem with ajax dropdownbox Pin
Christian Graus14-Aug-07 0:05
protectorChristian Graus14-Aug-07 0:05 
GeneralRe: problem with ajax dropdownbox Pin
anujose14-Aug-07 0:12
anujose14-Aug-07 0:12 
GeneralRe: problem with ajax dropdownbox Pin
N a v a n e e t h14-Aug-07 0:19
N a v a n e e t h14-Aug-07 0:19 
GeneralRe: problem with ajax dropdownbox Pin
Christian Graus14-Aug-07 0:22
protectorChristian Graus14-Aug-07 0:22 
AnswerRe: problem with ajax dropdownbox Pin
N a v a n e e t h14-Aug-07 0:19
N a v a n e e t h14-Aug-07 0:19 
GeneralRe: problem with ajax dropdownbox Pin
anujose14-Aug-07 0:31
anujose14-Aug-07 0:31 
i have a dropdownbox and a textbox .both controls i put in update panel and i am loading the dropdown box during page load.after that when i select a data from dropdown list it is displaying in the Textbox.to display data in textbox is taking time.

ithis is the code i am writing in codebehing file

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostBack)
{
for (int i = 0; i < 4000; i++)
{
DropDownList1.Items.Add("asdds" + i);
}
}

}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
TextBox1.Text = DropDownList1.SelectedItem.Text;
}
}
nothing else i am doing...

i have installed ASPAJAXExtSetup and i am taking aspnet-ajaxenabled website application
GeneralRe: problem with ajax dropdownbox Pin
Christian Graus14-Aug-07 0:40
protectorChristian Graus14-Aug-07 0:40 
GeneralRe: problem with ajax dropdownbox Pin
anujose14-Aug-07 0:49
anujose14-Aug-07 0:49 
GeneralRe: problem with ajax dropdownbox Pin
Christian Graus14-Aug-07 12:15
protectorChristian Graus14-Aug-07 12:15 
Questionfind primary key or foreign key Pin
VanithaVasu13-Aug-07 23:25
VanithaVasu13-Aug-07 23:25 
AnswerRe: find primary key or foreign key Pin
John-ph14-Aug-07 0:06
John-ph14-Aug-07 0:06 
Questionuploading XML file Pin
Milind Panchal13-Aug-07 23:02
Milind Panchal13-Aug-07 23:02 
AnswerRe: uploading XML file Pin
Sandeep Akhare13-Aug-07 23:13
Sandeep Akhare13-Aug-07 23:13 
Questionsetting GridView's height dynamically Pin
vvijaykrishna13-Aug-07 22:09
vvijaykrishna13-Aug-07 22:09 
AnswerRe: setting GridView's height dynamically Pin
Imran Khan Pathan13-Aug-07 22:35
Imran Khan Pathan13-Aug-07 22:35 
QuestionAccess Data Types Pin
Whoami Whoami13-Aug-07 22:04
Whoami Whoami13-Aug-07 22:04 
AnswerRe: Access Data Types Pin
Whoami Whoami15-Sep-07 8:13
Whoami Whoami15-Sep-07 8:13 
Questionhow to pop-up a window in asp.net Pin
Priya S13-Aug-07 21:47
Priya S13-Aug-07 21:47 

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.