No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: Hello...consider the following: [code=C#] string testString = "Sometime"; int startPos = testString.Length - 4; //call the string.Remove(int startPosition) method that deletes characters //starting from that specified position. //new string should show "Some" testString = testString.Remove(startPos); [/code] Hope this helps... | |
Re: Hello Nisar05, What type of help are you interested in? Working with ASP.NET, and ADO.NET with C# is currently what I do. I'd be glad to help you if I can. | |
Re: Hello, Couple of questions... [LIST=1] [*]What type of control(s) are you using to allow the user to upload a file? [*]What type of application is running? Website, Console, etc. [*]Is your server accessible to anyone or is it secured (hopefully secured)? [/LIST] | |
Re: Hello, I'm guessing that you have this C# in your code-behind file correct? If so, this is what I would write instead... [code=C#] //all code up to the RegisterClientScriptBlock call is ok... //Call the RegisterStartupScript method instead, it has the same signature as the //RegisterClientScriptBlock method. ClientScript.RegisterStartupScript(this.GetType(), "test", videoLoadScript, true); … |
The End.