Click here to Skip to main content
15,897,371 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionIIS and Tomcat Pin
jchandramouli20-Apr-09 22:46
jchandramouli20-Apr-09 22:46 
QuestionImport data from excel cell to Textbox Pin
samsonx20-Apr-09 21:58
samsonx20-Apr-09 21:58 
AnswerRe: Import data from excel cell to Textbox Pin
Greg Chelstowski21-Apr-09 0:28
Greg Chelstowski21-Apr-09 0:28 
GeneralRe: Import data from excel cell to Textbox Pin
krishna_goluguri7-Jul-10 23:27
krishna_goluguri7-Jul-10 23:27 
QuestionUnable to cast COM object of type 'Word.ApplicationClass' to interface type 'Word._Application'. Pin
abyvjohnmca20-Apr-09 21:21
abyvjohnmca20-Apr-09 21:21 
QuestionHow we can fetch a textbox value when an enter key is pressed ? Pin
Masood Kochi,SSF20-Apr-09 21:15
Masood Kochi,SSF20-Apr-09 21:15 
AnswerRe: How we can fetch a textbox value when an enter key is pressed ? Pin
N a v a n e e t h20-Apr-09 21:57
N a v a n e e t h20-Apr-09 21:57 
AnswerRe: How we can fetch a textbox value when an enter key is pressed ? Pin
jai_10121-Apr-09 1:42
jai_10121-Apr-09 1:42 
You can write the JavaScript Code and Get the Value of TextBox


<asp:textbox id="txt" onkeypress="CheckEnter_Onclick(event)" runat="server" xmlns:asp="#unknown">

---- This is Javascript Function that show the Value of Textbox in alert Box when Enter Key is Pressed--------------

function CheckEnter_Onclick(e)
{
var key;
key=(e.which) ? e.which : e.keyCode;
if(key==13)
{

var x= document.getElementById('<%=txt.ClientID %>').value;
alert(x);

}
return true;
}
Questionview html source code - asp.net Pin
Manish Thaduri20-Apr-09 20:35
Manish Thaduri20-Apr-09 20:35 
AnswerRe: view html source code - asp.net Pin
N a v a n e e t h20-Apr-09 20:39
N a v a n e e t h20-Apr-09 20:39 
General[Message Deleted] Pin
Manish Thaduri20-Apr-09 20:42
Manish Thaduri20-Apr-09 20:42 
GeneralRe: view html source code - asp.net Pin
N a v a n e e t h20-Apr-09 20:56
N a v a n e e t h20-Apr-09 20:56 
General[Message Deleted] Pin
Manish Thaduri20-Apr-09 21:06
Manish Thaduri20-Apr-09 21:06 
GeneralRe: view html source code - asp.net Pin
N a v a n e e t h20-Apr-09 22:19
N a v a n e e t h20-Apr-09 22:19 
Question[Message Deleted] Pin
Manish Thaduri20-Apr-09 22:45
Manish Thaduri20-Apr-09 22:45 
AnswerRe: view html source code - asp.net Pin
N a v a n e e t h20-Apr-09 23:46
N a v a n e e t h20-Apr-09 23:46 
JokeRe: view html source code - asp.net Pin
Ashfield21-Apr-09 1:50
Ashfield21-Apr-09 1:50 
QuestionSharepint connector Pin
Ch.Gayatri Subudhi20-Apr-09 20:20
Ch.Gayatri Subudhi20-Apr-09 20:20 
QuestionDisable the Back button from Browser Pin
sekannak20-Apr-09 19:59
sekannak20-Apr-09 19:59 
AnswerRe: Disable the Back button from Browser Pin
N a v a n e e t h20-Apr-09 20:05
N a v a n e e t h20-Apr-09 20:05 
AnswerRe: Disable the Back button from Browser Pin
khatri0321-Apr-09 3:50
khatri0321-Apr-09 3:50 
AnswerRe: Disable the Back button from Browser Pin
Deshbir Singh21-Apr-09 8:13
Deshbir Singh21-Apr-09 8:13 
Questionredirecting pages Pin
shabsk20-Apr-09 19:47
shabsk20-Apr-09 19:47 
AnswerRe: redirecting pages Pin
N a v a n e e t h20-Apr-09 19:57
N a v a n e e t h20-Apr-09 19:57 
AnswerRe: redirecting pages Pin
Perry Holman20-Apr-09 20:29
Perry Holman20-Apr-09 20:29 

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.