C# - How To Format A Timespan String

Feb 18, 2011

In the code i have :

gvRankings.DataSource = rankings.OrderBy(rg => rg.Swimtime).Take(100).ToArray();
gvRankings.DataBind();
(Swimtime here is a timespan)

At the frontside i have

< asp:TemplateField HeaderText="Tijd" ItemStyle-CssClass="time" HeaderStyle-CssClass="smallheader">
< ItemTemplate><%# ("Swimtime")%>< /ItemTemplate>
< /asp:TemplateField>

I would like to format the swimtime like hh:mm:dd.ff but i have (after 2 hours of trying) absolutely no idea how to do this.....

View 2 Replies


Similar Messages:

C# - TimeSpan Format With Hours Optional?

Jan 17, 2011

I have a timespan ts that has mostly minutes and seconds and sometimes hours. I'd like to format a string that'll give these results depending on the data

3:30 (hours not displayed, showing only full minutes)
13:30
1:13:30 (shows only full hours instead of 01:13:30)

So far I have

string TimeSpanText = string.Format("{0:h\:mm\:ss}", MyTimeSpan);

but it's not working.

View 3 Replies

Formatting TimeSpan To String Text?

Jul 26, 2010

I have a calculation that takes place utilizing the TimeSpan.FromTicks method, the result is stored in a TimeSpan object. The calculation itself is working correctly, but I'd like to format the result a bit nicer than it is and I can't figure out how to format a TimeSpan.

The result from the TimeSpan is:

00:00:04.6153846

I'd like to remove any preceding zero's and round up to the second decimal place, such as:

4.62

Does anyone know how I might be able to accomplish this? I can't seem to find a .NET 'built in' solution.

View 1 Replies

C# - TimeSpan For Different Years Substracted From A Bigger TimeSpan?

Feb 9, 2011

The language I am using is C#.

I have the folowing dillema.

DateTime A, DateTime B. If A < B then I have to calculate the number of days per year in that timespan and multiply it by a coeficient that corresponds to that year.
My problem is the fact that it can span multiple years.

For example:

Nr of Days in TimeSpan for 2009 * coef for 2009 + Nr of Days in TimeSpan for 2010 * coef for 2010 + etc

View 3 Replies

MVC :: Cannot Assign Timespan Display Format Attribute On Create/Edit And Display Views

Jul 6, 2010

inside my model metadata, i have a timespan field that would like to display in all Create, Edit and Display views like "hh:mm". For this, is set DisplayFormatAttribute as follows:

[Code]....

When i try to create a new model object, the time field gets displayed as "00:00:00" im my model (00 is the initial values) instead of "00:00". Is there something i am doing wrong? Note that the same approach works for date fileds, where i want to be displayed as "dd/MM/yyyy" (for this is assign "{0:dd/MM/yyyy}" to the display format attribute).

View 4 Replies

C# - Using String.Format To Build Regular Expressions: "Input String Was Not In A Correct Format"

Mar 7, 2011

I'm bulding document-from-template engine. At certain points I need to match on Reg Exp groups and replace template text with content from a db.

I 'hardcoded' my RegExp initially, doing something like: Regex r = new Regex(@"{DocSectionToggle::(?<ColumnName>w+)::(?<ResponseValue>.+)}[[(?<SectionContent>.+)]]", RegexOptions.Multiline);

it does group capture, so the syntax isn't the prettiest.

Just to make things neater and because I want' to keep the patterns in web.config or elsewhere, I've 'evolved' algorithm to something like:

[code]...

But I'm getting an error: 'Input string was not in correct format'.

Is this a limitation of string.Format(...)?

View 2 Replies

C# - Format Exception - Input String Was Not In A Correct Format

Oct 18, 2010

[code]....

Isn't this how u convert string to int ?

int.Parse(e.CommandArgument.ToString());

Whats wrong ?

View 3 Replies

Forms Data Controls :: Change The Date Format From String To String At Gridview?

Feb 24, 2011

i facing a problem to change the date format at gridview display.

below is my coding:

[code]....

View 2 Replies

DataSource Controls :: Incorrect String / Format The QueryBuilder String Correctly In Code?

Jul 7, 2010

I'm concatenating a string in codebehind to use in a sql select statement.

in aspx

<asp:Label ID="LabelHidden" runat="server" Visible="False"></asp:Label>
SelectCommand="SELECT * FROM [Data] WHERE [ActivityName] IN (@ActivityName) AND ([ID] = @ID)"
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList_Employees" Name="ID"
PropertyName="SelectedValue" Type="Int32" />
<asp:ControlParameter ControlID="LabelHidden" Name="ActivityName"
Type="String" />
</SelectParameters>
in codebehind
foreach (ListItem li in ListBox_Activities.Items)
{
if (li.Selected)
{
queryBuilder += li + "', ";
}
queryBuilder = queryBuilder.Substring(0, queryBuilder.Length - 1);
LabelHidden.Text = queryBuilder;

When i run the code it comes up blank. I did a query trace and it seems to be running as

exec sp_executesql N'SELECT * FROM [Data] WHERE [ActivityName] IN (@ActivityName) AND ([ID] = @ID)',N'@EmployeeID int,@ActivityName nvarchar(50)',@EmployeeID=4,@ActivityName=N'Production Technical Support'', Tools Development'','

with exta "'s

How can i format the queryBuilder string correctly in my code?

View 3 Replies

VS Macro / Add-in To Convert String Concatenations To String.format Style

Jul 28, 2010

I have project in development where string operations like "Hi " + variable + ", welcome to Project" are used at many places (given example is very minor one).

One of the requirement is to convert it to string.format style.

It is very long and tedious job, where I would not like to break earlier working code due to any human error might happen while converting it.

I would like to if any Macro or VS command which I can create to handle it. Just like we mark block of code and do Extract function in Re-factor options.

View 1 Replies

JavaScript - Format A String Using A String Pattern?

Sep 23, 2010

I have a displayFormat pattern "$###,###,###;-$###,###,###;#"( it can be different too) and I want to reformat the value in the AspxTextbox after deleting the ',' on GotFocus and LostFocus events by calling the following JavaScript function :

[code]....

I have tried to use ASPxFormatter but it is an internal class that is not indented to be used in a user project.Using String.Format('{0:' + displayFormat + '}', parseInt(value))); didn't work too , it threw an exception since String.format doesn't accept this format of pattern,Can you provide a way to reformat my string to any pattern I want not only the one I recite since ?

View 1 Replies

C# - How To Calculate Timespan Using C#

Oct 21, 2010

I would like to use asp.net c# to calculate the timespan for when a file was uploaded. Example, if i uploaded a file two weeks ago my text will say 'uploaded 2 weeks ago' or if i have upload a file 4 month's ago my text will say 'uploaded 4 months ago'

View 2 Replies

Format A Numeric String Using A Numeric Composite Format?

Aug 9, 2010

I've just encountered an interesting problem in a standard BoundField in a GridView. The field is for EmployeeCode, which is purely numeric, but stored in a character column in the database. The DataFormatString="{0:00000}" attribute on the BoundField doesn't work, as I assume that format is only for numeric values.

To work around this, I had to use a TemplateField, and bind the text value using the attribute Text='<%# PadNumericString(Eval("EmployeeCode").ToString(), 5) %>'. Is there no simpler way of doing this?

View 1 Replies

C# - Timespan Since Last Password Reset?

Feb 3, 2011

I have created a small asp.net application that allows users to reset their passwords. I am able to retrieve that last time the password was reset from the Directory Searcher object, but I'm having trouble with checking the timespan since the last password reset. The users can reset their passwords again after 24 hours have passed, otherwise they well get an error stating that they are not able to update their password at this time. Any recommendations on how to best go about doing this?

string passwordLastSet = string.Empty;
passwordLastSet = DateTime.FromFileTime((Int64)(result.Properties["PwdLastSet"][0])).ToString();

View 1 Replies

ADO.NET :: Convert Timespan To Datetime?

Aug 17, 2010

I am getting time span paramter from our client apllication(in Asp.net 3.5 using C#).

When i am Saving this Timepan Parameter at Our Backend (Sql server 2008) Using Linq(In WCF Service) it gives following error:

Unable to cast object of type 'System.TimeSpan' to type 'System.IConvertible'.

My Code is given below:

objsession.s_QuestionMasterTopicInsert(topic.Title, contentId,
Convert.ToDateTime(Time),
topic.IsAvailable, ref strRet,
ref strRetMsg);
// topic.Time(is the time span type )
//I changed Convert.ToDateTime(Time) to
new
DateTime(time.Ticks),
objsession.s_QuestionMasterTopicInsert(topic.Title, contentId, new
DateTime(time.Ticks), topic.IsAvailable,
ref strRet,
ref strRetMsg);

But it gives following error:

SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM

Is it Possible to convert timespan to Datetime?

How should I save timespan at My backend as Datetime Field ?

View 1 Replies

MVC :: Take A Querystring In String Format?

Dec 27, 2010

I'm trying to take a querystring in string format and get the data out, like what would have been done with request.querystring("thefield")

I am submitting a form using ajax with this syntax:

var str = $("form").serialize();

$.post(url.....

So the serialized data posts to the controller fine, but I can't figure out how to deserialize the str value on the c# side. Guessing there is a better answer than writing a custom routine.

View 5 Replies

Format A String Like 1000 To 10:00 ?

Jul 2, 2010

I am using C# , Asp.net2.0

I just need to format a string like 1000 to 10:00

I used string.Format("{0:##:##}", sttime)) but it showing the same 1000

View 2 Replies

Web Forms :: How To Convert From Timespan To Integer

Oct 29, 2010

I need to convert a timespan into an integer. I have two dates that I am subtracting one from the other, returning a value in days. I then need to perform some arithmatical functions on that value but I cant figure out how.

View 5 Replies

SQL Server :: Calculating Timespan Of Two Datetime?

Sep 25, 2010

in my application two time input will be passing to my sql stored procedures and I need to calculate the timespan between them. how can I do that? is there any way that I can do the following in t-sql?

[Code]....

View 5 Replies

C# - Model Binding TimeSpan From Integer?

Nov 2, 2010

I would like to declare some properties of my View Model of type TimeSpan to display the TotalMinutes property and bind back to a TimeSpan.

I've bound the property without using the strongly-typed helper in order to retrieve the TotalMinutes property:

<%=Html.TextBox("Interval", Model.Interval.TotalMinutes)%>

When the field is bound back to the View Model class it parses the number as a day (1440 mins).

How can I override this behaviour on certain properties (preferably using attributes on the View Model itself)?

View 1 Replies

Comparing Date In String Format?

Sep 28, 2010

I have a program that is using credit card info and the expiration date is selected by the user clicking a dropdownlist for the month and a dropdownlist for the year. I want to show a label message if the user tries to proceed while the month and year are evaluated as being earlier that the current month/year.

View 4 Replies

Input String Was Not In A Correct Format.

Mar 17, 2010

I've completed the 22 first tutorials of the data access tutorials, and now I'm trying to apply these techniques to a project I started myself.But i'm stuck trying to replace an id by its value from another table, so I want to show all information about a car ("wagen") , but instead of showing "1" as driver ("chauffeur") I want to show his name.I've written this querry for the "wagen" table in the dal

[Code]....

View 1 Replies

String Format Date Using Datareader?

Jan 28, 2010

I am using this line to pull out the date from a datareader linked to an sql statement.

PHP Code:
lbl_wall.Text = "<span style='font-size:12px;color:#555; font-style:italic'>Member since - " + String.Format("{0:ddd, MMM d, yyyy}", dbReaderPr["date_added"].ToString()) +"</span>";

The date format should be like:-

Quote:
"Sun, Mar 9, 2008"

But it appears like this:-

Quote:
"1/28/2010 8:00:16 AM"

How can i fix this?

View 3 Replies

Input String Was Not In A Correct Format - How To Fix It

Oct 26, 2010

When i write the following lines then i get an error like..

Input string was not in a correct format.

[code]....

View 1 Replies

Input String Not In Proper Format

Jul 26, 2010

i am taking string value from textbox name txtLastAppointment no. and want to convert it to int and then store it in databse using Linq to sql but i am getting error "input string was not in proper format" my Input string is 2.

My Code is.
objnew.lastAppointmentNo=Convert.ToInt32(txtLastAppointmenNo.Text);

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved