Click here to Skip to main content
15,891,409 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionProblem encrypt connection strings in web.config Pin
alyy04068-Jan-09 17:46
alyy04068-Jan-09 17:46 
Questionhow do I read a file name located in a specific folder into a C# app Pin
Tina P8-Jan-09 17:27
Tina P8-Jan-09 17:27 
AnswerRe: how do I read a file name located in a specific folder into a C# app Pin
Tina P8-Jan-09 18:12
Tina P8-Jan-09 18:12 
QuestionSet Listbox scroll position after Postback Pin
dsrao8-Jan-09 15:58
dsrao8-Jan-09 15:58 
AnswerRe: Set Listbox scroll position after Postback Pin
Rajdev Ramasamy12-Jan-09 2:49
Rajdev Ramasamy12-Jan-09 2:49 
QuestionHyperlink in a TextBox - Possible? Pin
kavitha_blueindia8-Jan-09 13:31
kavitha_blueindia8-Jan-09 13:31 
AnswerRe: Hyperlink in a TextBox - Possible? Pin
Not Active8-Jan-09 17:13
mentorNot Active8-Jan-09 17:13 
AnswerRe: Hyperlink in a TextBox - Possible? Pin
Rajdev Ramasamy12-Jan-09 2:11
Rajdev Ramasamy12-Jan-09 2:11 
Hi,

I have tried with a simple html page with a textbox control. On entering some url, and hitting on "Enter" key, a new window will open with the given url. Please check this will be useful for you.

Sample Data:

http:\\www.google.com

Code:

<html>
<head>
<title>Hypherlink in a textbox</title>
</head>
<body>
<script language="javascript">
function ShowWindow(e,tstinput)
{
if(e.keyCode == 13)
{
if(tstinput.value !='')
{
window.open(tstinput.value);
return null;
}
}

return e.keyValue;
}
</script>
<input type="input" style="text-decoration:underline;" onkeypress="return ShowWindow(event,this)" />
</body>
</html>

Regards,
Rajdev KR
QuestionHelp on ecommerce web programming Pin
atplerry8-Jan-09 13:02
atplerry8-Jan-09 13:02 
AnswerRe: Help on ecommerce web programming Pin
Not Active8-Jan-09 17:19
mentorNot Active8-Jan-09 17:19 
GeneralRe: Help on ecommerce web programming Pin
atplerry12-Jan-09 0:37
atplerry12-Jan-09 0:37 
QuestionWhy does web.config automatically save itself? Pin
Tomz_KV8-Jan-09 10:06
Tomz_KV8-Jan-09 10:06 
AnswerRe: Why does web.config automatically save itself? Pin
Jon Rista8-Jan-09 10:18
Jon Rista8-Jan-09 10:18 
QuestionBest third party components suite for Asp.Net Ajax Pin
lotuzwine8-Jan-09 9:57
lotuzwine8-Jan-09 9:57 
AnswerRe: Best third party components suite for Asp.Net Ajax Pin
ToddHileHoffer8-Jan-09 10:19
ToddHileHoffer8-Jan-09 10:19 
GeneralRe: Best third party components suite for Asp.Net Ajax Pin
lotuzwine9-Jan-09 1:40
lotuzwine9-Jan-09 1:40 
QuestionSaving data from a placeholder control [modified] Pin
AllPhee8-Jan-09 4:41
AllPhee8-Jan-09 4:41 
AnswerRe: Saving data from a placeholder control Pin
Not Active8-Jan-09 5:35
mentorNot Active8-Jan-09 5:35 
GeneralRe: Saving data from a placeholder control Pin
ToddHileHoffer8-Jan-09 6:06
ToddHileHoffer8-Jan-09 6:06 
GeneralRe: Saving data from a placeholder control Pin
AllPhee9-Jan-09 1:01
AllPhee9-Jan-09 1:01 
QuestionGive permision for ActiveX control Pin
hemant.kaushal8-Jan-09 2:56
hemant.kaushal8-Jan-09 2:56 
AnswerRe: Give permision for ActiveX control Pin
Nagarjuna Dilip6-May-09 20:20
professionalNagarjuna Dilip6-May-09 20:20 
Questionupdate progress bar Pin
Gaurav Agrawal (Planetofcoders.com)8-Jan-09 2:35
Gaurav Agrawal (Planetofcoders.com)8-Jan-09 2:35 
AnswerRe: update progress bar Pin
ToddHileHoffer8-Jan-09 2:48
ToddHileHoffer8-Jan-09 2:48 
AnswerRe: update progress bar Pin
Christian Graus8-Jan-09 2:58
protectorChristian Graus8-Jan-09 2:58 

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.