Click here to Skip to main content
15,922,650 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPreserve method call vaues in master page and use it Pin
srinimuk9-Oct-13 23:32
srinimuk9-Oct-13 23:32 
QuestionHow one can debug an ASP.NET Application on remote computer without any local Visual Studio ? Pin
fgk549-Oct-13 3:22
professionalfgk549-Oct-13 3:22 
AnswerRe: How one can debug an ASP.NET Application on remote computer without any local Visual Studio ? Pin
Deflinek10-Oct-13 3:13
Deflinek10-Oct-13 3:13 
QuestionDropdown Pin
Tripat Bala Singh9-Oct-13 2:35
Tripat Bala Singh9-Oct-13 2:35 
GeneralRe: Dropdown Pin
thatraja9-Oct-13 2:55
professionalthatraja9-Oct-13 2:55 
GeneralRe: Dropdown Pin
Tripat Bala Singh9-Oct-13 3:33
Tripat Bala Singh9-Oct-13 3:33 
GeneralRe: Dropdown Pin
thatraja9-Oct-13 4:40
professionalthatraja9-Oct-13 4:40 
GeneralRe: Dropdown Pin
Tripat Bala Singh9-Oct-13 7:34
Tripat Bala Singh9-Oct-13 7:34 
public void BindCStateDrp()
{
var stateList = balStateObj.GetState(0);
drpCrntState.DataSource = stateList;
drpCrntState.DataTextField = "StateName";
drpCrntState.DataValueField = "StateID";
drpCrntState.DataBind();
drpCrntState.Items.Insert(0, new ListItem("--Select State--", "-1"));
}

DAL
-----------------
public List<BOState> GetStates(int stateID)
{
List<BOState> lstState = new List<BOState>();
try
{
SqlParameter[] paramList =
{
new SqlParameter("@State_Id" , stateID)
};
SqlDataReader reader = SqlHelper.ExecuteReader(CommandType.StoredProcedure, "State_Select_Sp", paramList);
while (reader.Read())
{
BOState state = new BOState();
state.StateID = (Int32)reader[0];
state.StateName = (String)reader[1];
state.StateStatus = (bool)reader[2];
lstState.Add(state);
}
}
catch
{

}
return lstState;
}
AnswerRe: Dropdown Pin
thatraja9-Oct-13 3:25
professionalthatraja9-Oct-13 3:25 
AnswerRe: Dropdown Pin
Ajay_Saini9-Oct-13 6:47
Ajay_Saini9-Oct-13 6:47 
GeneralRe: Dropdown Pin
Tripat Bala Singh10-Oct-13 17:36
Tripat Bala Singh10-Oct-13 17:36 
GeneralRe: Dropdown Pin
Ajay_Saini10-Oct-13 22:52
Ajay_Saini10-Oct-13 22:52 
AnswerRe: Dropdown Pin
anil pathak9-Oct-13 22:31
anil pathak9-Oct-13 22:31 
GeneralRe: Dropdown Pin
Tripat Bala Singh10-Oct-13 17:33
Tripat Bala Singh10-Oct-13 17:33 
RantIE and time to vent Pin
L Viljoen9-Oct-13 0:21
professionalL Viljoen9-Oct-13 0:21 
GeneralRe: IE and time to vent Pin
Richard MacCutchan9-Oct-13 0:50
mveRichard MacCutchan9-Oct-13 0:50 
Questionhow to split an excel workbook into two in C# Pin
antony beula8-Oct-13 21:23
antony beula8-Oct-13 21:23 
AnswerRe: how to split an excel workbook into two in C# Pin
Richard MacCutchan8-Oct-13 23:24
mveRichard MacCutchan8-Oct-13 23:24 
Questionhey frnds help me out . Pin
Mr.VJ8-Oct-13 21:06
Mr.VJ8-Oct-13 21:06 
AnswerRe: hey frnds help me out . Pin
thatraja8-Oct-13 21:12
professionalthatraja8-Oct-13 21:12 
Questioni have prblrm in ajex auto complite text box need help plz Pin
eng.mohamed ali8-Oct-13 13:33
eng.mohamed ali8-Oct-13 13:33 
QuestionRe: i have prblrm in ajex auto complite text box need help plz Pin
Deflinek10-Oct-13 3:25
Deflinek10-Oct-13 3:25 
QuestionAsp.net Identity MVC5 + Nhibernate Pin
roscez7-Oct-13 6:47
roscez7-Oct-13 6:47 
QuestionProblem reading from sql server view Pin
Member 93288477-Oct-13 6:24
Member 93288477-Oct-13 6:24 
AnswerRe: Problem reading from sql server view Pin
Richard Deeming7-Oct-13 7:22
mveRichard Deeming7-Oct-13 7: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.