Click here to Skip to main content
15,924,039 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Control causing postback? Pin
Mircea Grelus23-Aug-06 23:47
Mircea Grelus23-Aug-06 23:47 
GeneralRe: Control causing postback? Pin
TintinV3ck24-Aug-06 0:15
TintinV3ck24-Aug-06 0:15 
GeneralRe: Control causing postback? Pin
Mircea Grelus24-Aug-06 0:43
Mircea Grelus24-Aug-06 0:43 
AnswerRe: Control causing postback? Pin
Ramasubramaniam24-Aug-06 5:54
Ramasubramaniam24-Aug-06 5:54 
QuestionTooltip value for dropdownlist items Pin
Arch22k23-Aug-06 22:54
Arch22k23-Aug-06 22:54 
AnswerRe: Tooltip value for dropdownlist items Pin
_AK_25-Aug-06 1:59
_AK_25-Aug-06 1:59 
Questionfind value after space in string Pin
playout23-Aug-06 21:56
playout23-Aug-06 21:56 
AnswerRe: find value after space in string Pin
Martin J Evans23-Aug-06 22:20
Martin J Evans23-Aug-06 22:20 
Hi assuming the character is always a space you could use the split() function:

----------------------------------------------------------
Dim _str As String = "07915 25D3"<br />
 dim _s as string = str.Split(" ")(1).ToString

----------------------------------------------------------

In this instance _s will give you the value 25D3.

The argument passed into the split function is a character or number of characters are used to break down the string into an array.

The value of _s is evaluated to the 2nd element of the array (25D3)

Hope this helpsSmile | :)




MJ
GeneralRe: find value after space in string Pin
playout23-Aug-06 22:27
playout23-Aug-06 22:27 
AnswerRe: find value after space in string Pin
Neeraj Arora23-Aug-06 23:08
Neeraj Arora23-Aug-06 23:08 
QuestionHow to get selected Item bgcolor & mouseover events on the Datagrid Pin
sridharjai.s23-Aug-06 21:53
sridharjai.s23-Aug-06 21:53 
Questionhow to write user defined functions Pin
Kissy1623-Aug-06 21:30
Kissy1623-Aug-06 21:30 
AnswerRe: how to write user defined functions [modified] Pin
Paddy Boyd23-Aug-06 22:48
Paddy Boyd23-Aug-06 22:48 
GeneralRe: how to write user defined functions Pin
Naveed Kamboh25-Aug-06 1:54
Naveed Kamboh25-Aug-06 1:54 
AnswerRe: asp.net Tree Pin
Neeraj Arora23-Aug-06 21:42
Neeraj Arora23-Aug-06 21:42 
QuestionRe: asp.net Tree Pin
ahmadartoflove26-Aug-06 0:07
ahmadartoflove26-Aug-06 0:07 
QuestionHow to sense user's session's timeout Pin
IamMohan23-Aug-06 20:33
IamMohan23-Aug-06 20:33 
Questionhow to do two tasks in same buton Pin
Kissy1623-Aug-06 20:31
Kissy1623-Aug-06 20:31 
AnswerRe: how to do two tasks in same buton Pin
Guffa23-Aug-06 20:59
Guffa23-Aug-06 20:59 
GeneralRe: how to do two tasks in same buton Pin
Kissy1623-Aug-06 21:54
Kissy1623-Aug-06 21:54 
GeneralRe: how to do two tasks in same buton Pin
Irshad Sulaimani23-Aug-06 23:01
Irshad Sulaimani23-Aug-06 23:01 
GeneralRe: how to do two tasks in same buton Pin
Kissy1624-Aug-06 1:16
Kissy1624-Aug-06 1:16 
GeneralRe: how to do two tasks in same buton Pin
_AK_24-Aug-06 1:19
_AK_24-Aug-06 1:19 
GeneralRe: how to do two tasks in same buton Pin
Irshad Sulaimani24-Aug-06 2:09
Irshad Sulaimani24-Aug-06 2:09 
GeneralRe: how to do two tasks in same buton Pin
Kissy1624-Aug-06 20:23
Kissy1624-Aug-06 20:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.