Click here to Skip to main content
15,897,371 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionData Table Pin
KhandelwalA12-Aug-09 0:48
KhandelwalA12-Aug-09 0:48 
AnswerRe: Data Table Pin
Mike Ellison12-Aug-09 2:26
Mike Ellison12-Aug-09 2:26 
AnswerRe: Data Table Pin
Abhishek Sur12-Aug-09 2:45
professionalAbhishek Sur12-Aug-09 2:45 
Question!postback Pin
Ramkumar_S12-Aug-09 0:45
Ramkumar_S12-Aug-09 0:45 
AnswerRe: !postback Pin
padmanabhan N12-Aug-09 0:47
padmanabhan N12-Aug-09 0:47 
GeneralRe: !postback Pin
Ramkumar_S12-Aug-09 1:19
Ramkumar_S12-Aug-09 1:19 
AnswerRe: !postback Pin
Venkatesh Mookkan12-Aug-09 16:24
Venkatesh Mookkan12-Aug-09 16:24 
GeneralRe: !postback Pin
Ramkumar_S13-Aug-09 1:50
Ramkumar_S13-Aug-09 1:50 
Thanks for ur time..

this is the usercontrol which is placed in the placeholder ...

my issue is (!postback) is not working in user control...


namespace IndiaInfoline.Markets.Derivatives
{
public partial class NiftySummary_Inner : System.Web.UI.UserControl
{
DerivativeDAL DerObj = new DerivativeDAL();
DataSet DS = new DataSet();
public string InsSymbol, InstName, Symbol;
static int flag = 0;

protected void Page_Load(object sender, EventArgs e)
{

//if (flag == 0)
//{
// Fillselection(DropDownSymbol.SelectedValue);
// flag = 1;
//}

// Fillselection(DropDownSymbol.SelectedValue);
}
protected void Page_init(object sender, EventArgs e)
{
Fillselection(DropDownSymbol.SelectedValue);
}
protected void DropDownSymbol_SelectedIndexChanged1(object sender, EventArgs e)
{

Fillselection(DropDownSymbol.SelectedValue);
}


public void Fillselection(string ddlselectedval)
{

InsSymbol = ddlselectedval;
string[] strParts = InsSymbol.Split(new char[] { '|' });
InstName = strParts[0];
if (InstName == null)
InstName = "";
if (strParts.Length > 1)
Symbol = strParts[1];
else
Symbol = "";

DS = DerObj.Deriv_GainLoseHiLo(InstName, Symbol, "", "MW");
if (DS.Tables[0].Rows.Count > 0)
{
SummGrid.DataSource = DS;
SummGrid.DataBind();
NoDataFound.Visible = false;
}
else
{
NoDataFound.Visible = true;
}


}








}
}

Ramkumar

AnswerRe: !postback Pin
Venkatesh Mookkan13-Aug-09 3:59
Venkatesh Mookkan13-Aug-09 3:59 
QuestionUpdatepanel trigger automatically Pin
kavinnagarajan12-Aug-09 0:33
kavinnagarajan12-Aug-09 0:33 
AnswerRe: Updatepanel trigger automatically Pin
Abhijit Jana12-Aug-09 0:44
professionalAbhijit Jana12-Aug-09 0:44 
AnswerRe: Updatepanel trigger automatically Pin
Zafar A khan 12-Aug-09 0:56
professionalZafar A khan 12-Aug-09 0:56 
GeneralUpdatepanel trigger automatically Pin
kavinnagarajan12-Aug-09 1:15
kavinnagarajan12-Aug-09 1:15 
GeneralUpdatepanel trigger automatically Pin
kavinnagarajan12-Aug-09 1:27
kavinnagarajan12-Aug-09 1:27 
GeneralRe: Updatepanel trigger automatically Pin
4anusha412-Aug-09 1:50
4anusha412-Aug-09 1:50 
QuestionLocal IIS website opens as File-System website in VS2008 Pin
Dan Kent12-Aug-09 0:20
Dan Kent12-Aug-09 0:20 
AnswerRe: Local IIS website opens as File-System website in VS2008 Pin
Goa_1314-Oct-09 12:02
Goa_1314-Oct-09 12:02 
GeneralRe: Local IIS website opens as File-System website in VS2008 Pin
Goa_1314-Oct-09 12:27
Goa_1314-Oct-09 12:27 
Questionloginname control Pin
mylogics11-Aug-09 23:52
professionalmylogics11-Aug-09 23:52 
AnswerRe: loginname control Pin
Abhishek Sur12-Aug-09 0:26
professionalAbhishek Sur12-Aug-09 0:26 
QuestionDigital clock Pin
kavinnagarajan11-Aug-09 23:23
kavinnagarajan11-Aug-09 23:23 
AnswerRe: Digital clock Pin
Sun Rays11-Aug-09 23:38
Sun Rays11-Aug-09 23:38 
AnswerRe: Digital clock Pin
Abhijit Jana11-Aug-09 23:43
professionalAbhijit Jana11-Aug-09 23:43 
GeneralDigital clock Pin
kavinnagarajan11-Aug-09 23:47
kavinnagarajan11-Aug-09 23:47 
GeneralRe: Digital clock Pin
Abhijit Jana11-Aug-09 23:56
professionalAbhijit Jana11-Aug-09 23:56 

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.