Click here to Skip to main content
15,894,405 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to send mail through SQL Server Triggers Pin
YingXiuMei24-Feb-08 0:01
YingXiuMei24-Feb-08 0:01 
GeneralRe: How to send mail through SQL Server Triggers Pin
Hesham Amin25-Feb-08 21:05
Hesham Amin25-Feb-08 21:05 
GeneralCascadingDropDown Control Pin
~V~22-Feb-08 21:15
~V~22-Feb-08 21:15 
GeneralRe: CascadingDropDown Control Pin
renangi22-Feb-08 22:09
renangi22-Feb-08 22:09 
QuestionHow chane Font Name Pin
Rinki Mukheraji22-Feb-08 20:52
Rinki Mukheraji22-Feb-08 20:52 
AnswerRe: How chane Font Name Pin
Abhijit Jana23-Feb-08 1:32
professionalAbhijit Jana23-Feb-08 1:32 
AnswerRe: How chane Font Name Pin
Mitesh Darji24-Feb-08 20:19
Mitesh Darji24-Feb-08 20:19 
GeneralWindows to web code Pin
Member 387988122-Feb-08 19:50
Member 387988122-Feb-08 19:50 
This following code i have used for windows form,
now same codei want to use for my web application,

In windows:
Dim boxIndex As Integer, lExst As Boolean
Dim box As ComboBox = sender 'Here i have to change as dropdown box if i change ,it will raise error as if condition place that i have mentioned bold letters..,Plzany one tell me this one
Dim txt As String = box.Text
Dim posCursor As Integer = box.SelectionStart

' If Cursor does not stay on the beginning of text box.
If posCursor <> 0 Then
lExst = False
' Go in cycle through the combo box list to find the appropriate entry in the list
For boxIndex = 0 To box.Items.Count - 1
If UCase(Mid(box.Items(boxIndex), 1, posCursor)) = _
UCase(Mid(txt, 1, posCursor)) Then
box.Text = box.Items(boxIndex)
box.SelectionStart = posCursor
lExst = True
Exit For
End If
Next
' We didn't find appropriate entry and return previous value to text box
If Not lExst Then
box.Text = Mid(txt, 1, posCursor - 1) + Mid(txt, posCursor + 1)
box.SelectionStart = posCursor - 1
End If
End If

Thanks & Regards,
Mageshh,
please don't forget to vote on the post

GeneralRe: Windows to web code Pin
Christian Graus22-Feb-08 20:17
protectorChristian Graus22-Feb-08 20:17 
Generalauto fill Pin
Member 387988122-Feb-08 19:02
Member 387988122-Feb-08 19:02 
GeneralRe: auto fill Pin
Christian Graus22-Feb-08 19:05
protectorChristian Graus22-Feb-08 19:05 
GeneralASP.Net communication Pin
Soundari22-Feb-08 18:23
Soundari22-Feb-08 18:23 
GeneralRe: ASP.Net communication Pin
Christian Graus22-Feb-08 19:12
protectorChristian Graus22-Feb-08 19:12 
GeneralAuthentication Help [modified] Pin
Kurt - CSDevMan22-Feb-08 16:22
Kurt - CSDevMan22-Feb-08 16:22 
QuestionThat assembly does not allow partially trusted callers [modified] Pin
Nishad22-Feb-08 8:18
Nishad22-Feb-08 8:18 
GeneralRe: That assembly does not allow partially trusted callers Pin
Not Active22-Feb-08 11:16
mentorNot Active22-Feb-08 11:16 
Generalgood asp.net web hosting Pin
tjawed22-Feb-08 5:31
tjawed22-Feb-08 5:31 
GeneralRe: good asp.net web hosting Pin
Jasmine250122-Feb-08 5:34
Jasmine250122-Feb-08 5:34 
GeneralRe: good asp.net web hosting Pin
tjawed22-Feb-08 5:42
tjawed22-Feb-08 5:42 
GeneralRe: good asp.net web hosting Pin
Not Active22-Feb-08 6:29
mentorNot Active22-Feb-08 6:29 
GeneralRe: good asp.net web hosting Pin
N a v a n e e t h22-Feb-08 6:35
N a v a n e e t h22-Feb-08 6:35 
GeneralRe: good asp.net web hosting Pin
LloydA11122-Feb-08 13:22
LloydA11122-Feb-08 13:22 
GeneralRe: good asp.net web hosting Pin
Not Active22-Feb-08 14:33
mentorNot Active22-Feb-08 14:33 
GeneralRe: good asp.net web hosting Pin
LloydA11122-Feb-08 14:36
LloydA11122-Feb-08 14:36 
GeneralRe: good asp.net web hosting Pin
Expert Coming22-Feb-08 14:43
Expert Coming22-Feb-08 14:43 

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.