Click here to Skip to main content
15,905,614 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Call Dll Pin
Abhishek Sur12-Jul-09 22:11
professionalAbhishek Sur12-Jul-09 22:11 
GeneralRe: Call Dll Pin
Sabari MD12-Jul-09 22:33
Sabari MD12-Jul-09 22:33 
GeneralRe: Call Dll Pin
Abhijit Jana12-Jul-09 22:58
professionalAbhijit Jana12-Jul-09 22:58 
GeneralRe: Call Dll Pin
Sabari MD12-Jul-09 23:05
Sabari MD12-Jul-09 23:05 
GeneralRe: Call Dll [ With solution] Pin
Sabari MD13-Jul-09 0:27
Sabari MD13-Jul-09 0:27 
AnswerRe: Call Dll Pin
Sandeep Akhare13-Jul-09 5:20
Sandeep Akhare13-Jul-09 5:20 
QuestionCreating a proxy using a WSDL file located on the same machine MANUALLY without the web reference wizard in VS 2005 Pin
Tina P12-Jul-09 12:04
Tina P12-Jul-09 12:04 
Questiongrid view page index Pin
mrcooll12-Jul-09 3:38
mrcooll12-Jul-09 3:38 
hi all,
how can i maintain gridview page index while navigation from the form and getting back by browser back button.

i tried to use this approach:


public int PageIndex
    {

        get
        {
            if (Session["DGApplicationPageIndex"] != null)
            {
                return (int)Session["DGApplicationPageIndex"];
            }
            else
            {
                return 0;
            }
        }
        set
        {
            if (value != -1)
            {
                Session["DGApplicationPageIndex"] = value;
            }
            else
            {
                Session["DGApplicationPageIndex"] = null;
            }

        }

    }



protected void DGApplication_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        DoSearch(TextBox1.Text);
        DGApplication.PageIndex = e.NewPageIndex;
        PageIndex = DGApplication.PageIndex;
    }


protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            DoSearch("-1");
        }
        DGApplication.PageIndex = PageIndex;
        PageIndex = -1;

    }

AnswerRe: grid view page index Pin
Not Active12-Jul-09 4:15
mentorNot Active12-Jul-09 4:15 
QuestionBrowser limitation with maximum Page length Pin
Gaurav Aroraa12-Jul-09 2:33
professionalGaurav Aroraa12-Jul-09 2:33 
AnswerRe: Browser limitation with maximum Page length Pin
Brij12-Jul-09 3:02
mentorBrij12-Jul-09 3:02 
AnswerRe: Browser limitation with maximum Page length Pin
Abhijit Jana12-Jul-09 3:11
professionalAbhijit Jana12-Jul-09 3:11 
QuestionDefine custom roles Pin
Gaurav Aroraa12-Jul-09 2:32
professionalGaurav Aroraa12-Jul-09 2:32 
AnswerRe: Define custom roles Pin
Brij12-Jul-09 2:55
mentorBrij12-Jul-09 2:55 
AnswerRe: Define custom roles Pin
Abhijit Jana12-Jul-09 3:06
professionalAbhijit Jana12-Jul-09 3:06 
QuestionHow to switch/override the variable ‘aspxerrorpath’? Pin
Gaurav Aroraa12-Jul-09 2:00
professionalGaurav Aroraa12-Jul-09 2:00 
AnswerRe: How to switch/override the variable ‘aspxerrorpath’? Pin
Abhijit Jana12-Jul-09 3:15
professionalAbhijit Jana12-Jul-09 3:15 
QuestionHow to calculate file upload and download time using asp.net C# Pin
Gaurav Aroraa12-Jul-09 1:58
professionalGaurav Aroraa12-Jul-09 1:58 
AnswerRe: How to calculate file upload and download time using asp.net C# Pin
Abhijit Jana12-Jul-09 3:16
professionalAbhijit Jana12-Jul-09 3:16 
AnswerRe: How to calculate file upload and download time using asp.net C# Pin
<<Tash18>>12-Jul-09 3:27
<<Tash18>>12-Jul-09 3:27 
AnswerRe: How to calculate file upload and download time using asp.net C# Pin
Christian Graus12-Jul-09 4:19
protectorChristian Graus12-Jul-09 4:19 
QuestionWriting drivers in C# Pin
Gaurav Aroraa12-Jul-09 1:56
professionalGaurav Aroraa12-Jul-09 1:56 
AnswerRe: Writing drivers in C# Pin
Abhijit Jana12-Jul-09 2:28
professionalAbhijit Jana12-Jul-09 2:28 
AnswerRe: Writing drivers in C# Pin
<<Tash18>>12-Jul-09 3:31
<<Tash18>>12-Jul-09 3:31 
QuestionHow to get alerts at client side? Pin
Gaurav Aroraa12-Jul-09 1:53
professionalGaurav Aroraa12-Jul-09 1:53 

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.