Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
3k views

Client WCF DataContract has empty/null values from service

I have a simple WCF service that returns the time from the server. I've confirmed that data is being sent by checking with Fiddler. Here's the result object xml that my service sends. ...
2
votes
3answers
3k views

EmptyDataTemplate and EmptyDataText not working in GridView

I can't seem to get either EmptyDataTemplate or EmptyDataText of a GridView to work. I'm fetching the GridView contents in de codebehind and attaching them with using DataBind(). I've tried having ...
1
vote
8answers
487 views

PHP: a short cut for isset and !empty?

I wonder if there any better ideas to solve the problem below, I have a form with a number of input fields, such as, <input name="pg_title" type="text" value="" /> <input name="pg_subtitle" ...
1
vote
3answers
1k views

Gridview EmptyDataText=“No data” - how to add style to the text 'No data'

I have a gridview control in my C# program and have just added an 'EmptyDataText' control that (as you know) displays a message if no records were found. When I view this page in design, the 'No data ...
0
votes
1answer
201 views

WPFDataGrid behaves strangely with DataGridTemplateColumn sorting after editing the cell content

I am facing a problem with WPFDataGrid. I have bound my DataGrid to XML data. I am using DataGridTemplateColumn for all the columns. After the initial data is loaded everything(like sorting, etc) ...
0
votes
2answers
2k views

Gridview - align centre the tag 'EmptyDataText' & so it's not default left of page

I have a gridview control in my c# program. Basically someone enters an email address and the data is then shown in the gridview but if no data could be found with the email address, a message is ...
0
votes
4answers
2k views

'EmptyDataText' tag in GridView wants to be shown only if data is not found

I have the following Gridview (which works) and an 'EmptyDataText' tag that should show a message on the screen if the data could not be found from the database after clicking the submit button. The ...
0
votes
1answer
472 views

Gridview's 'EmptyDataRowStyle' - unable to align center

I'm trying to align some text to the center of the page rather than the default left but can't seem to do this using the 'EmptyDataRowStyle' tag. I have an EmptyDataText="No data" tag in my gridview ...
0
votes
2answers
437 views

How to detect that DetailsView displays not a data but EmptyDataText

I have a DetailsView and few buttons on my page. So I want to hide them if DetailsView displays not a data but just a value if EmptyDataText property. How can I do that? I found only one way - ...