Apostaphie

  • Thread starter Thread starter Charles A. Lackman
  • Start date Start date
C

Charles A. Lackman

Hello,

I have made a web site that streams music using mms. The service works
great but I have noticed that when the song or song location has an
apostaphie in it the server (or something) cuts everything off after the
apostaphie and causes the song not to string. i.e.:

C:\My Music\Greatest Songs\She's Mine.wma is read as C:\My Music\Greatest
Songs\She

It does the same when the directory has an apostaphie in it. Is there a
work around for this? Any suggestions or information would be greatly
appreciated.

Thanks,

Chuck
 
hi
here is how i am passing the valu

<asp:HyperLinkColumn HeaderText="Title Name" DataTextField="Title_Name" DataNavigateUrlFormatString="OrReg.aspx?id={0} "..

here i am getting the value in the next pag

Dim s As String = Request.QueryString("id").ToString()
 
Back
Top