Click here to Skip to main content
15,914,010 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Debugging no longer works in Visual Studio - HELP!! Pin
_AK_8-Jul-08 1:13
_AK_8-Jul-08 1:13 
GeneralRe: Debugging no longer works in Visual Studio - HELP!! Pin
Member 34028868-Jul-08 2:32
Member 34028868-Jul-08 2:32 
GeneralRe: Debugging no longer works in Visual Studio - HELP!! Pin
_AK_8-Jul-08 2:41
_AK_8-Jul-08 2:41 
Questionconvert database column values into Row and display in gridview in asp.net2.0 Pin
Bharani_Ram7-Jul-08 21:50
Bharani_Ram7-Jul-08 21:50 
AnswerRe: convert database column values into Row and display in gridview in asp.net2.0 Pin
Sherin Iranimose8-Jul-08 0:03
Sherin Iranimose8-Jul-08 0:03 
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 

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.