what is client back feauture ?
Answer / chandrasekar_namakkal
ClientSideCallback used to avoid form Postback for each
and every time .I have posted some sample code also try
which is use for Dropdown
aspx.cs
private string _pricecallbackResult,
_pricecallbackResultCAT, _pricecallbackResultClass;
public string GetCallbackResult()
{
return _pricecallbackResult;
}
public void RaiseCallbackEvent(string eventArgument)
{
string[] val = eventArgument.Split(',');
string id = val[0].ToString();
string k = val[1].ToString();
if (val[1] == "1")
{
// _pricecallbackResult =
objCommonBL.GetProgramNameForRebate();
}
else if (val[1] == "2")
{
_pricecallbackResult =
objCommonBL.GetCategoryNameForRebate(Convert.ToInt32(id));
}
else if (val[1] == "3")
{
_pricecallbackResult =
objCommonBL.GetClassNameForRebate(Convert.ToInt32(id));
}
}
in Aspx Java Script
*********************
function PriceClientCallbackError(result, context)
{
alert(result);
}
function PriceClientCallback(result, context)
{
ClassClear();
if (!result)
{
return;
}
var resultValue = result.split(',');
for (var i = 0; i < resultValue.length; ++i)
{
var val = resultValue[i].split('~~');
for(var j=0;j<val.length; ++j)
{
var values = val[j].split('~');
var option = document.createElement
("OPTION");
option.value = values[0];
option.innerHTML = values[1];
document.forms[0].ctl00$ContentPlaceHolder1
$frmRebate$ddlCategory.appendChild(option);
}
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
How to implement form based authentication in asp.net application?
Where do we store our connection string in asp.net application?
Suppose You Want A Certain Asp.net Function Executed On Mouseover For A Certain Button. Where Do You Add An Event Handler?
Why we use content place holder in asp.net?
How ASP and ASP.NET page works.
What is meant by ispostback in asp net?
How can you make sure that web api returns json data only?
I have created a configuration setting in my web.config and have kept it at the root level. How do I prevent it from being overridden by another web.config that appears lower in the hierarchy?
What is the significance of proxy user?
What's the ASP.Net Application life cycle?
Where is cookie used in asp.net?
What is view state management in asp net?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)