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

ASP.NET

 
GeneralRe: dropdownlist Pin
mylogics14-Aug-09 0:30
professionalmylogics14-Aug-09 0:30 
AnswerRe: dropdownlist Pin
haleemasher14-Aug-09 0:38
haleemasher14-Aug-09 0:38 
GeneralRe: dropdownlist Pin
mylogics14-Aug-09 0:46
professionalmylogics14-Aug-09 0:46 
AnswerRe: dropdownlist Pin
KhandelwalA14-Aug-09 0:41
KhandelwalA14-Aug-09 0:41 
Questionquestion Pin
farokhian13-Aug-09 23:57
farokhian13-Aug-09 23:57 
AnswerRe: question Pin
Parwej Ahamad14-Aug-09 0:03
professionalParwej Ahamad14-Aug-09 0:03 
GeneralRe: question Pin
farokhian14-Aug-09 0:53
farokhian14-Aug-09 0:53 
QuestionThere is not row at position 0 Pin
haleemasher13-Aug-09 23:29
haleemasher13-Aug-09 23:29 
i have a dropdownlist which a different values on its textchanged i want to populate two textboxs. one to show Maximum Serial end and another show Serial End.
when i select 3 value in textbox it works as i like. but other than 3 i slect any value it show error There is not row at position 0
protected void DropDownList1_TextChanged(object sender, EventArgs e)
   {
      cnx.Open();
       SqlCommand ddlcmd = new SqlCommand();
       commandText = "SELECT MAX(CouponTransaction.SerialEnd),CouponType.Price  FROM CouponType INNER JOIN CouponTransaction ON CouponType.CouponTypeID = CouponTransaction.CouponTypeID WHERE  CouponType.CouponName= '" + ddlCType.SelectedValue + "'GROUP BY CouponType.Price";
       ds = new DataSet();
       ds  = GetData(commandText);
       txtSFrom.Text =ds.Tables[0].Rows[0][0].ToString();
       Txtprice.Text = ds.Tables[0].Rows[0][1].ToString();
       cnx.Close();
   }

AnswerRe: There is not row at position 0 Pin
padmanabhan N13-Aug-09 23:35
padmanabhan N13-Aug-09 23:35 
GeneralRe: There is not row at position 0 Pin
haleemasher13-Aug-09 23:40
haleemasher13-Aug-09 23:40 
GeneralRe: There is not row at position 0 Pin
padmanabhan N13-Aug-09 23:42
padmanabhan N13-Aug-09 23:42 
GeneralRe: There is not row at position 0 Pin
haleemasher13-Aug-09 23:52
haleemasher13-Aug-09 23:52 
AnswerRe: There is not row at position 0 Pin
Abhishek Sur13-Aug-09 23:58
professionalAbhishek Sur13-Aug-09 23:58 
GeneralRe: There is not row at position 0 Pin
haleemasher14-Aug-09 0:02
haleemasher14-Aug-09 0:02 
GeneralRe: There is not row at position 0 Pin
Abhishek Sur14-Aug-09 0:14
professionalAbhishek Sur14-Aug-09 0:14 
QuestionJS not working in Mozila Pin
janani1313-Aug-09 23:21
janani1313-Aug-09 23:21 
AnswerRe: JS not working in Mozila Pin
padmanabhan N13-Aug-09 23:24
padmanabhan N13-Aug-09 23:24 
AnswerRe: JS not working in Mozila Pin
Parwej Ahamad13-Aug-09 23:27
professionalParwej Ahamad13-Aug-09 23:27 
AnswerRe: JS not working in Mozila Pin
Abhishek Sur13-Aug-09 23:29
professionalAbhishek Sur13-Aug-09 23:29 
QuestionThe Problem of DataList and ModalPopup extender Pin
123chaminda13-Aug-09 23:10
123chaminda13-Aug-09 23:10 
AnswerRe: The Problem of DataList and ModalPopup extender Pin
padmanabhan N13-Aug-09 23:22
padmanabhan N13-Aug-09 23:22 
QuestionDropdownlist Pin
mylogics13-Aug-09 23:09
professionalmylogics13-Aug-09 23:09 
AnswerRe: Dropdownlist Pin
padmanabhan N13-Aug-09 23:19
padmanabhan N13-Aug-09 23:19 
GeneralRe: Dropdownlist Pin
mylogics13-Aug-09 23:24
professionalmylogics13-Aug-09 23:24 
AnswerRe: Dropdownlist Pin
KhandelwalA13-Aug-09 23:20
KhandelwalA13-Aug-09 23:20 

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.