Click here to Skip to main content
15,893,381 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questioniframe background color style not working Pin
trilokharry29-Sep-09 0:20
trilokharry29-Sep-09 0:20 
AnswerRe: iframe background color style not working Pin
Abhishek Sur29-Sep-09 0:32
professionalAbhishek Sur29-Sep-09 0:32 
QuestionLoading Table into aspxcombobox Pin
zizigolo11029-Sep-09 0:13
zizigolo11029-Sep-09 0:13 
AnswerRe: Loading Table into aspxcombobox Pin
Abhijit Jana29-Sep-09 0:26
professionalAbhijit Jana29-Sep-09 0:26 
AnswerRe: Loading Table into aspxcombobox Pin
sashidhar29-Sep-09 0:40
sashidhar29-Sep-09 0:40 
Questionmultiline textbox scroll bar Pin
sasirekha28-Sep-09 23:38
sasirekha28-Sep-09 23:38 
AnswerRe: multiline textbox scroll bar Pin
sashidhar28-Sep-09 23:43
sashidhar28-Sep-09 23:43 
AnswerRe: multiline textbox scroll bar Pin
Abhishek Sur29-Sep-09 0:38
professionalAbhishek Sur29-Sep-09 0:38 
The issue is with the timer. If you continuously place the data within a timer to a textbox it will automatically go to the bottom of the scroller.

See, If you just paste a text within a textbox, the cursor moves to the bottom of the scroller. So this is your case.

If you need to move the cursor to the top, just after the text is copied. Use this after you set the text to the textbox.
var oTextbox = document.all.item(sTextboxID); 
if (oTextbox.createTextRange) 
{ 
      var r = (oTextbox.createTextRange()); 
      r.moveStart('character', (0)); 
      r.collapse(); 
      r.select(); 
}
}

See it it works or not.. Smile | :)

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

QuestionProviding link to the images that are shown in Slideshowextender control Pin
jknascrimz28-Sep-09 23:12
jknascrimz28-Sep-09 23:12 
AnswerRe: Providing link to the images that are shown in Slideshowextender control Pin
Christian Graus28-Sep-09 23:17
protectorChristian Graus28-Sep-09 23:17 
General[Message Deleted] Pin
jknascrimz28-Sep-09 23:23
jknascrimz28-Sep-09 23:23 
GeneralRe: Providing link to the images that are shown in Slideshowextender control Pin
Abhijit Jana28-Sep-09 23:25
professionalAbhijit Jana28-Sep-09 23:25 
GeneralRe: Providing link to the images that are shown in Slideshowextender control Pin
jknascrimz28-Sep-09 23:27
jknascrimz28-Sep-09 23:27 
GeneralRe: Providing link to the images that are shown in Slideshowextender control Pin
Abhijit Jana28-Sep-09 23:23
professionalAbhijit Jana28-Sep-09 23:23 
Questionfetch data frm multiple tables Pin
rummer28-Sep-09 22:44
rummer28-Sep-09 22:44 
AnswerRe: fetch data frm multiple tables Pin
Christian Graus28-Sep-09 22:49
protectorChristian Graus28-Sep-09 22:49 
AnswerRe: fetch data frm multiple tables Pin
Abhijit Jana28-Sep-09 22:50
professionalAbhijit Jana28-Sep-09 22:50 
AnswerRe: fetch data frm multiple tables Pin
nagendrathecoder28-Sep-09 22:51
nagendrathecoder28-Sep-09 22:51 
AnswerRe: fetch data frm multiple tables Pin
Nisha Agrawal28-Sep-09 22:52
Nisha Agrawal28-Sep-09 22:52 
AnswerRe: fetch data frm multiple tables Pin
Vimalsoft(Pty) Ltd28-Sep-09 22:57
professionalVimalsoft(Pty) Ltd28-Sep-09 22:57 
GeneralRe: fetch data frm multiple tables Pin
Christian Graus28-Sep-09 23:00
protectorChristian Graus28-Sep-09 23:00 
GeneralRe: fetch data frm multiple tables Pin
Abhijit Jana28-Sep-09 23:20
professionalAbhijit Jana28-Sep-09 23:20 
Question[Message Deleted] Pin
sumanmks28-Sep-09 22:42
sumanmks28-Sep-09 22:42 
AnswerRe: how to insert value in datbase Pin
Christian Graus28-Sep-09 22:43
protectorChristian Graus28-Sep-09 22:43 
GeneralRe: how to insert value in datbase Pin
sumanmks28-Sep-09 22:49
sumanmks28-Sep-09 22:49 

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.