Forms Data Controls :: String.Format Not Working In ListView Control?
Aug 5, 2010
I have a ListView control that pulls a phone number from a db table. I'd like to format the phone number in the presentation layer to look like (###) ###-####.
The code line currently looks like this. The page displays the phone# but unformatted, i.e. 9999999999.
[Code]....
Based on other posts I've looked at in this forum, I've also tried:
<li>Phone: <%# String.Format("{0:(###) ###-####}", Databinder.Eval (Container.DataItem("Phone"))) %> with no success. In fact, this particular line throws an exception in my application (Input string not in the correct format).
The datatype I'm using in SQL is varchar(15)
The MSDN documentation for the String.Format method hasn't been very helpful thus far.
View 20 Replies
Similar Messages:
Apr 16, 2010
I have used CKEditor in Insert item template and Edit Item Template in List view, for this i have used a textbox
<asp:TextBox
ID="txtComment"
runat="server"
TextMode="MultiLine"
[Code]....
View 8 Replies
Feb 24, 2011
i facing a problem to change the date format at gridview display.
below is my coding:
[code]....
View 2 Replies
Aug 6, 2010
i am trying to format my text box which is located in my list view edit mode.
Here is my code:
<td align="right" width="15%" valign="top">
View 2 Replies
Mar 13, 2011
I have anested ListView control. I also implemented a jQuery to automatically expand the TextBox control inside of the nested ListView Insert Template. The problem is, when the Textbox expand, the outer ListView control is not; therefore, the Textbox control expands underneath the buttons of the outer listView control. How do I expand the outer ListView control as the nested ListView textbox is automatically expand? One great example is in Facebook where if I add a response comment, it'll automatically push any comments below mine down. If nested Listview control is not the best way to do this, what are my options?
View 8 Replies
Mar 3, 2011
I am trying the following:
[Code]....
Where @Resource.Info is "{0} - {1}".
But I always get <p>0</p> - <p>1</p>.
I tried a few more options like using @<text>, @Html.Raw but I always end up with an exception or the same result.
Basically I have a localized resource, @Resource.Info, and I need to insert in the phrase some htm code.
View 2 Replies
Jan 22, 2010
I'm getting "the input string was not in the specified format" on the last line of code below. The grid is based on a SqlDataSource that has a stored procedure pulling an integer for column 0.
int theUserID = 0;
string theUserFullName =
"";
theUserID = Int32.Parse(gvUserPermissions.Rows[gvUserPermissions.SelectedIndex].Cells[0].Text);
View 2 Replies
Oct 7, 2010
I am trying to get the delete to work on my gridview. I've added a
DataKeyNames="ID"
but when i click delete i get Input string was not in a correct format.
View 7 Replies
Aug 11, 2010
there is a template field in gridview this is basically for showing amount.
<asp:TemplateField HeaderText="Amount" ConvertEmptyStringToNull="False">
<ItemTemplate>
<%#GetQTY1(float.Parse(Eval("Sub_ContractAmt").ToString())).ToString("N2")%>
</ItemTemplate>
</asp:TemplateField>
if my data base field has any value then it shows no error. but if this fiels is null then it shows error
input string was not in correct format while binding the gridview.
so can you please tell me the method that if this field has null value then what should I do so that i dont get this error. this fields might be null.
View 8 Replies
Oct 23, 2010
I have a gridview that is built using a objectdatasource and set to autogenerate the columns based on that source, on some other pages i have a gridview that is built within the page with template fields and so on..
in that gridview i have a field that displays the time value like so
<asp:Label
ID="lblstartDate"
runat="server"
Text='<%# DataBinder.Eval(Container.DataItem,"startDate", "{0:t}") %>'
/>
How can i apply the same formatting to my time column that is being displayed on the page that uses the autogenerated columns?
I tried to handle in SQL, but only returned the value like this : 03:11:00 and i would like to see it like this : 3:11 AM
View 3 Replies
Jul 20, 2010
I can't seem to change the format from 77.77980986554 to 77.80% in one of the footer columns.
I tried
GVreporteventas.FooterRow.Cells[3].Text = String.Format("{0:D2}%",((tva / tvo) * 100).ToString());
Did not work, the point is that no matter what format I give it, it always returned like 77.77980986554
No matter if I try currency format or other formats, so obviously is not even formatting the string or something.
View 1 Replies
Mar 5, 2011
I'm stumped on this one... it seems really simple, but I can't get around it. I am pulling 2 values (discount percent, discount amount) from a formview label control. I want to use these numbers in a calculation, but I can't seem to get the format correct.
I hit the error on this statement:
DiscountAmt = Convert.ToDouble(fvDiscountResults.FindControl(
"DiscountSubtotal1"
).ToString)
[Code]....
View 2 Replies
Dec 19, 2010
I have a gridview, one of the columns is a template containing a label.
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataKeyNames="ProductID" DataSourceID="SqlBestSellers" HeaderStyle-BackColor="#DDDDDD" RowStyle-HorizontalAlign="Left" RowStyle-Font-Size="10pt">
<Columns>
[Code]....
I am trying to format the cost as 10.00 but does not seem to have any effect at all. I get the values OK, but if the value of the string is 10.90, the output I get is 10.9
View 6 Replies
Jan 15, 2011
i have problem with manging format of string at run time
actually i have infomation in tabular form , a i am accessing that in coding in string fromat and send it by mail but when i send it shows html coding and not view in tabular .
View 4 Replies
Oct 27, 2010
[Code]....
I've used only linkbutton and I do not know if what influence it.
View 3 Replies
Jul 8, 2010
I am getting "input string not in correct format" error and I have tried a few variations and still no dice. zSessvar1 is equal to 159 and when I substitute the actual nbr, it will work.
Dim cmd1
As OleDbCommand =
New OleDbCommand("Select nbrofcomments from table1 where PID = "
+ zsessvar1, myConn)
View 9 Replies
Dec 27, 2010
I have a listview that I'm binding programmatically. I am trying to add a simple datapager but the paging is not working. it is because I am binding programmatically.
[Code]....
View 2 Replies
Apr 28, 2010
I have this code:
aspx
[Code]....
aspx.cs
[Code]....
Why can I not view anything in my dropdown list? It is totally blank
View 7 Replies
Mar 29, 2010
My sorting does not work .. When I click on my sorting, I get a server error 500.
[Code]....
View 1 Replies
Jun 7, 2010
I have a listview where it's content is from a datatable. Programmatically, when the user goes to the webpage, the listview is binded to a datatable like so:
[Code]....
I want to now add a DataPager but this code isn't working:
[Code]....
Clicking on the page numbers either has no response or clears out the listview or distorts the data.
What can I do to make DataPager behave correctly?
View 1 Replies
Mar 4, 2011
I have a Listview Control and the paging is implemented using the DataPager control.
I have set the maximum pagesize=5 of the datapager.
But when I click the next or previous buttons it loads the same set of products, no matter how many times I click on the next/previous buttons,
[Code]....
And here is the code behind file
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
[Code]....
View 2 Replies
Jan 3, 2010
I have a problem whit sorting in my Listview... its dosent sort..
[Code]....
View 11 Replies
Apr 23, 2010
I have a gridview set up with a button that when clicked I want it to send a unique value to a listview which is set to receive the value in a parameterized SQL query. I forgot how to set the button up in the GUI to take the unique value and put it in a query string and send it to url. I would like to use the GUI just to get more familiar with it. I know this is easy but I gortgot how.
View 5 Replies
Jan 6, 2010
I have been attempting to find a solution for my phone number formatting problem for 2 hours now and I am not getting any closer. My 10 digit phone number is stored as a varchar(14) without any formatting (just 10 digits).
Here is the code to format the phone number in a gridview:
[Code]....
why the formatting won't work? It just displays the 10 numbers with no formatting.
View 8 Replies
Feb 18, 2011
I have created a class file which gets me the state codes,license numbers and the expiration dates for the same.
I fetch the expiration dates in string format.
Each customer can have many licenses.
I have changed the format of the date (initially appearing as YYYY/MM/DD 00:00:00 when retrieved from database) to MM/DD/YYYY.
After retrieving all the licenses pertaining to a single customer, I bind them to a datalist.
Now the requirement is that for each customer, I need to sort the licenses according to the latest expiration date and then display the same.
How can this be achieved ?
View 2 Replies