2
Answers

Server controls are not displayed

joseph_tom

joseph_tom

20y
3k
1
Hi All, I am facing an issue now and not able to proceed any further. I'll describe that below. I have a web application (ASP.NET) which has to be deployed on a Windows 2003 server. After creating a web site and deploying the application, the application is running fine-- that is, the main page is displayed but none of the server controls on thye form are displayed. I tried unregistering and reregistering ASP.NET using aspnet_regiis. But, that didnt work. Anybody have any idea on this. Please help me at the earliest to resolve this issue. Thanks in advance, Joseph.
Answers (2)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Use:

string[] items = fileName.Split('_');

items[0] will be the portion to the first _ and then items[1] will be the portion from the first _ to the second _.

These will exclude the underscores themselves.


Accepted
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
You could deal with that situation (or even two hyphen delimiters) by replacing this line:

   string[] items = fileName.Split('_');

with this:

   string[] items = fileName.Split(new char[]{'_', '-'});