Upcoming stories

Detect Browser Refresh Avoid events fire in ASP.NET(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 15 hours, 26 minutes ago

If you have created a aspx page using C# and ASP.NET and have put a button on it. And in the Click event of this button if you are inserting some data in database , after click if user refresh the page than click event gets fired again resulting data insertion to database again, to stop events on the page getting fired on browser refresh we need to write bit of code to avoid it read more...

add a comment |category: |Views: 0

tags: another

Search Records In GridView And Highlight Results Asp.Net Ajax(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 15 hours, 24 minutes ago

In this example i am Explaining how to search records in gridview and highlight the results based on search criteria user enter in textbox. read more...

add a comment |category: |Views: 1

tags: another

ASP.NET TextBox Submit Form On Enter Key DefaultButton(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 15 hours, 23 minutes ago

Whenever we want user to submit a form by filing out some textboxes on the aspx page, though we provide the button to submit the form but user prefer to press enter and expect the form to be submitted read more...

add a comment |category: |Views: 0

tags: another

Register Dlls Assembly Custom User Controls Ascx In ASP.NET(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 6 hours, 59 minutes ago

To register custom control dlls and user control ascx, we need to write in page directive of aspx html source read more...

add a comment |category: |Views: 0

tags: another

ASP.NET Search Records In GridView Footer And Highlight Results(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 6 hours, 58 minutes ago

Search Records In GridView Footer And Highlight Results using ajax in asp.net read more...

add a comment |category: |Views: 0

tags: another

User validation authentication using session in ASP.NET(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 6 hours, 56 minutes ago

Consider a scenario where you don't want to use membership class or Form Authentication techniques provided by .NET 2.0, in those situation this example might be helpful read more...

add a comment |category: |Views: 0

tags: another

OpenFileDialog in winforms windows forms application C# VB(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 6 hours, 55 minutes ago

In this example i m creating a Open file dialog box to browse and select a file to open in .NET windows applications using C# and winforms read more...

add a comment |category: |Views: 0

tags: another

Find IP Address in ASP.NET Behind Proxy(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 6 hours, 54 minutes ago

If you want to find the IP address of visitors to your aspx page or application or wanna retrieve IP for other uses than u need to write this code read more...

add a comment |category: |Views: 0

tags: another

Export GridView to Pdf-ASP.NET(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 6 hours, 52 minutes ago

In this example i m exporting Gridview populated with SqlDataSource to Pdf using iTextSharp in click event of Button read more...

add a comment |category: |Views: 0

tags: another

Hide GridView Columns In ASP.NET(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 6 hours, 51 minutes ago

This example shows how to hide columns of gridview in normal display mode and set them to visible when gridview is in edit mode read more...

add a comment |category: |Views: 0

tags: another

Change Mode Of DetailsView FormView From Default Mode Insert(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(904) 6 hours, 50 minutes ago

Change Mode Of DetailsView FormView From Default Mode set to Insert read more...

1 comment |category: |Views: 0

tags: another

Sharing a WebDriver across TestFixtures(www.tomdupont.net)

submitted by tduponttdupont(1163) 19 minutes ago

WebDriver (also known as Selenium 2.0) is a web testing tool that is both useful and easy, which is a very rare find. If you are doing web development with ASP.NET, you need to take 30 minutes of your time and go try out WebDriver. That is all the time it will take to get you hooked. To launch a browser you need only new up a Driver object for that browser. I used to create a new Driver in my TestFixtureSetup, and then close and dispose of that in the testFixtureTearDown. However now that Firefox does not persist my windows login credentials it can be very frustrating to have to log back in for every test fixture. A solution to this problem is simply to share a single WebDriver across multiple TestFixtures. Fortunately NUnit's SetUpFixture makes this very easy to do. read more...

add a comment |category: |Views: 0

tags: another