Click here to Skip to main content
15,900,511 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSet Focus Pin
Pranav Thakur7-Jul-08 21:45
Pranav Thakur7-Jul-08 21:45 
AnswerRe: Set Focus Pin
eyeseetee7-Jul-08 21:55
eyeseetee7-Jul-08 21:55 
Questionhow to apply condition at hiddenfields or sessions (greater than less than cond.) Pin
gaurav mangal7-Jul-08 21:30
gaurav mangal7-Jul-08 21:30 
QuestionSearching Pin
sjs4u7-Jul-08 21:19
sjs4u7-Jul-08 21:19 
AnswerRe: Searching Pin
eyeseetee7-Jul-08 21:54
eyeseetee7-Jul-08 21:54 
Questionhow to disable current page link button in usercontrol? Pin
kathyani7-Jul-08 20:55
kathyani7-Jul-08 20:55 
AnswerRe: how to disable current page link button in usercontrol? Pin
eyeseetee7-Jul-08 22:01
eyeseetee7-Jul-08 22:01 
Questionlogin control Pin
lav naphade7-Jul-08 20:42
lav naphade7-Jul-08 20:42 
AnswerRe: login control Pin
Imran Khan Pathan7-Jul-08 21:06
Imran Khan Pathan7-Jul-08 21:06 
AnswerRe: login control Pin
Sherin Iranimose7-Jul-08 21:11
Sherin Iranimose7-Jul-08 21:11 
Question.NET dll does not appear in .NET tab of Add Reference window Pin
Arindam Tewary7-Jul-08 20:16
professionalArindam Tewary7-Jul-08 20:16 
AnswerRe: .NET dll does not appear in .NET tab of Add Reference window Pin
Sherin Iranimose7-Jul-08 22:58
Sherin Iranimose7-Jul-08 22:58 
GeneralRe: .NET dll does not appear in .NET tab of Add Reference window Pin
Arindam Tewary7-Jul-08 23:23
professionalArindam Tewary7-Jul-08 23:23 
GeneralRe: .NET dll does not appear in .NET tab of Add Reference window Pin
N a v a n e e t h7-Jul-08 23:36
N a v a n e e t h7-Jul-08 23:36 
GeneralRe: .NET dll does not appear in .NET tab of Add Reference window Pin
Arindam Tewary7-Jul-08 23:25
professionalArindam Tewary7-Jul-08 23:25 
GeneralRe: .NET dll does not appear in .NET tab of Add Reference window Pin
N a v a n e e t h7-Jul-08 23:31
N a v a n e e t h7-Jul-08 23:31 
GeneralRe: .NET dll does not appear in .NET tab of Add Reference window Pin
Sherin Iranimose7-Jul-08 23:48
Sherin Iranimose7-Jul-08 23:48 
Questionasp.net c# conversion help in vb.net Pin
amistry_petlad7-Jul-08 20:16
amistry_petlad7-Jul-08 20:16 
Hi all
please help me to convert
following code

<br />
<br />
public partial class _Default : System.Web.UI.Page<br />
<br />
, ICallbackEventHandler   I face difficulty here <br />
{<br />
<br />
    IList<product> list = null;<br />
   <br />
    protected void Page_Load(object sender, EventArgs e)<br />
    {<br />
        // Register the client callbacks <br />
        RegisterClientCallbacks(); <br />
    }<br />
<br />
    private void RegisterClientCallbacks()<br />
    {<br />
        string callbackRef = ClientScript.GetCallbackEventReference(this, "arg", "RecieveServerData", "context");<br />
<br />
        string script = String.Empty;<br />
<br />
        if (!ClientScript.IsClientScriptBlockRegistered("CallServer"))<br />
        {<br />
            script = "function CallServer(arg,context) { " + callbackRef + "}";<br />
<br />
            ClientScript.RegisterClientScriptBlock(this.GetType(), "CallServer", script, true);<br />
        }<br />
    }<br />
<br />
   <br />
<br />
    public string GetCallbackResult()<br />
    {<br />
        return HtmlTableHelper.ConvertProductListToTable(list); <br />
    }<br />
<br />
    public void RaiseCallbackEvent(string eventArgument)<br />
    {<br />
        if (String.IsNullOrEmpty(eventArgument)) return;<br />
        <br />
        list = ProductRepository.GetProducts(eventArgument); <br />
    }<br />
<br />
   <br />
}<br />
<br />
<br />
<br />
<br />
</product>

AnswerRe: asp.net c# conversion help in vb.net Pin
Imran Khan Pathan7-Jul-08 20:36
Imran Khan Pathan7-Jul-08 20:36 
GeneralRe: asp.net c# conversion help in vb.net Pin
N a v a n e e t h7-Jul-08 22:54
N a v a n e e t h7-Jul-08 22:54 
AnswerRe: asp.net c# conversion help in vb.net Pin
Arindam Tewary7-Jul-08 20:36
professionalArindam Tewary7-Jul-08 20:36 
AnswerRe: asp.net c# conversion help in vb.net Pin
Sherin Iranimose7-Jul-08 20:37
Sherin Iranimose7-Jul-08 20:37 
GeneralRe: asp.net c# conversion help in vb.net Pin
amistry_petlad7-Jul-08 20:38
amistry_petlad7-Jul-08 20:38 
GeneralRe: asp.net c# conversion help in vb.net Pin
Sherin Iranimose7-Jul-08 21:02
Sherin Iranimose7-Jul-08 21:02 
QuestionRe: asp.net c# conversion help in vb.net (very urgent) [modified] Pin
amistry_petlad8-Jul-08 8:03
amistry_petlad8-Jul-08 8:03 

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.