Posts by diogoan • 341 points
6 posts
- 
		7 votes2 answers5383 viewsQ: How to select all characters except some specific words using regex?Good morning to all, I would like to run a string search for some specific strings, but in the project we are working on we have no access to any function find or similar, only to a regular… 
- 
		3 votes1 answer5051 views
- 
		2 votes1 answer96 viewsQ: How to get data from a Bulletedlist in Codebehind ASP.NET?I have a list of items defined through a Bulletedlist on an Asp.net. page This list is populated with multiple items through attributes DataSource, DataTextField, DataValueField and the method… 
- 
		2 votes1 answer399 viewsQ: How to display two pages of the same Gridview side by side?I would like to know how to display two pages of the same GridView side by side, if possible keeping the pagination on both pages at the same time. For example, if I have a GridView in that way: Num… 
- 
		2 votes2 answers1253 viewsQ: How to search and sort Templatefields on a Gridview?Basically, I have a table (Gridview) on an aspx page whose data are defined by Templatefields. For example: <asp:GridView runat="server" ID="grdProdutos"> <Columns> <asp:TemplateField… 
- 
		7 votes2 answers5079 viewsQ: How to count records (SELECT COUNT) in LinqHow to count records that a query would return in Linq (Entity Framework) in C#? The equivalent in SQL is to do a SELECT COUNT(*). Note that I want to receive the count of records straight away,…