Download
100% FREE
Office Document APIs for .NET
Online: 1309
Home
Articles
Interviews
Forums
For Beginners
Popular Questions
ITIL Career Advice
PMP Career Advice
Career Advices
Codes
Videos
ASP.NET
ASP.NET MVC
Android Intel XDK
Sql Server
AngularJS
Bootstrap
Backbone.JS
MongoDB
LESS (CSS)
jQuery
WPF
WWF
SSIS
LightSwitch
Tutorials
News
ASP.NET MVC
|
Be Interview Ready
|
Top Performers
|
DNF MVP
|
Top Posts
|
Winners
|
Subscribe
|
Catalogs
Welcome Guest !
Register
Login
Home
>
Forums
>
C#
>
Loading ...
Text box value to another textbox [Resolved]
Posted by
Vinokanna
under
C#
on 10/8/2013 |
Points: 10
| Views : 1128 | Status :
[Member]
| Replies : 3
Write New Post
|
Search Forums
|
Resolved Posts
|
Un Answered Posts
|
Forums Home
Hi,
text box value : 12345678-abcdefgh
I want the text box value to be passed to another text box without the number
only abcdefgh only abcdefgh to be passed any one please help me.thanks in advance.
[Resolved]
Reply
|
Reply with Attachment
Alert Moderator
Responses
Posted by:
Brahmam
on: 10/9/2013
[Member]
Starter
|
Points: 50
0
string[] values = txtTest.Text.Split('-');
string text = values[0].Trim();
string text1 = values[1].Trim();
txttest2.Text = text1;
brahmam
Vinokanna
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Posted by:
Pradeepmanne
on: 10/8/2013
[Member]
Starter
|
Points: 25
0
hi,
Use Split to separate parts from a string.
Vinokanna
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Posted by:
Kmandapalli
on: 10/8/2013
[Member]
Silver
|
Points: 25
0
Hi,
Use can use the string methods like split, index , remove etc..
Mark as answer if satisfied....
Regards,
Shree M.
Kavya Shree Mandapalli
Vinokanna
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Login to post response
Latest Posts
Get all materials of parent and its children in an array except for few
(0)
New
Container in Media Query
(0)
How to send keys to specified app with title?
(1)
NullReferenceException when adding list
(0)
How to run a VB.NET exe in the backend on Azure VM server?
(0)
Null Reference Exception
(0)
How do you parse the Subject Alternate Names from an X509Certificate2?
(0)
Framework64\v4.0.30319\Config\web.config file is not well formed
(0)
More ...