Search Results

2
votes

How do I change a web site from an IIS hosted site to an ASP.Net Development Server hosted site?

Can you start a new project and use the "Use Custom Web Server" option? Personally I would start a new project and get the files directly from Source Control - being a web site rather than …
1
vote

String to time format but how?

In SQL you could use something like convert(varchar(8),dateadd(second,45,nextrundate),114) convert(varchar(8),dateadd(minute,45,nextrundate),114) convert(varchar(8),dateadd(hour,4,nextrunda …
1
vote

SkinID on custom control not working (asp.net)

I think the skin parameters get assigned during the initialisation of the control whereas the viewstate will only store after OnInit is complete. From MS: "It tracks changes to the …
1
vote

C# Regular Expression Help

The following will give you matches on the group UserName #*(?<UserName>\d+;#[^;]+) It would be simply is you prepended the string with a hash and appended a …