Click here to Skip to main content
15,898,708 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Enable options according to button click Pin
himanshu256118-Jun-09 1:13
himanshu256118-Jun-09 1:13 
GeneralRe: Enable options according to button click Pin
<<Tash18>>18-Jun-09 1:14
<<Tash18>>18-Jun-09 1:14 
AnswerRe: Enable options according to button click Pin
CrazyCoder2618-Jun-09 1:39
CrazyCoder2618-Jun-09 1:39 
Questionhow to highlight newly inserted record in a gridview with paging=true? Pin
Pawan Kiran18-Jun-09 1:10
Pawan Kiran18-Jun-09 1:10 
AnswerRe: how to highlight newly inserted record in a gridview with paging=true? Pin
Amol-11118-Jun-09 1:34
Amol-11118-Jun-09 1:34 
AnswerRe: how to highlight newly inserted record in a gridview with paging=true? Pin
Member 387855310-Jul-09 17:45
Member 387855310-Jul-09 17:45 
Questionhow to set width of textbox based on the given input? Pin
Pawan Kiran18-Jun-09 0:59
Pawan Kiran18-Jun-09 0:59 
AnswerRe: how to set width of textbox based on the given input? Pin
CrazyCoder2618-Jun-09 2:04
CrazyCoder2618-Jun-09 2:04 
This will solve your problem to some extent:
<asp:TextBox ID="TextBox1" runat="server" onkeypress="return dWd(this);" onkeyup="return dWd2(this);" onkeydown="return dWd2(this);"  Width="20"></asp:TextBox>

<script language="javascript">
function dWd(e)
    {
    
     var wt=parseInt(e.style.width);
     wt+=10;
     e.style.width=wt + "px";
    
    }
    
    function dWd2(e)
    {
    if(event.keyCode==8)
    {
     if(parseInt(e.style.width)>20)
     {
     var wt=parseInt(e.style.width);
     wt-=10;
     e.style.width=wt + "px";
     }
    }
    }
</script>


CC26

Question[Message Deleted] Pin
Inderjeet Kaur18-Jun-09 0:49
Inderjeet Kaur18-Jun-09 0:49 
AnswerRe: Address verification System(AVS) Pin
himanshu256118-Jun-09 0:58
himanshu256118-Jun-09 0:58 
AnswerRe: Address verification System(AVS) Pin
Abhijit Jana18-Jun-09 1:07
professionalAbhijit Jana18-Jun-09 1:07 
QuestionAddress verification System(AVS) Pin
Inderjeet Kaur18-Jun-09 0:49
Inderjeet Kaur18-Jun-09 0:49 
AnswerRe: Address verification System(AVS) Pin
DoctorMick18-Jun-09 1:16
DoctorMick18-Jun-09 1:16 
AnswerRe: Address verification System(AVS) Pin
Abhijit Jana18-Jun-09 1:24
professionalAbhijit Jana18-Jun-09 1:24 
QuestionRe: Address verification System(AVS) [modified] Pin
Inderjeet Kaur18-Jun-09 1:39
Inderjeet Kaur18-Jun-09 1:39 
GeneralPaypal integration Pin
coolsatty18-Jun-09 0:35
coolsatty18-Jun-09 0:35 
GeneralRe: Paypal integration Pin
DoctorMick18-Jun-09 1:20
DoctorMick18-Jun-09 1:20 
QuestionGet IP address Pin
raushan_918-Jun-09 0:34
raushan_918-Jun-09 0:34 
AnswerRe: Get IP address Pin
Vimalsoft(Pty) Ltd18-Jun-09 0:50
professionalVimalsoft(Pty) Ltd18-Jun-09 0:50 
AnswerRe: Get IP address Pin
httplover18-Jun-09 4:44
httplover18-Jun-09 4:44 
QuestionUploading of media files into chunks Pin
Member 391626718-Jun-09 0:18
Member 391626718-Jun-09 0:18 
AnswerRe: Uploading of media files into chunks Pin
Abhishek Sur18-Jun-09 1:38
professionalAbhishek Sur18-Jun-09 1:38 
GeneralRe: Uploading of media files into chunks Pin
Member 391626724-Jun-09 18:42
Member 391626724-Jun-09 18:42 
Questionencryption/decrption problem Pin
Kissy1618-Jun-09 0:14
Kissy1618-Jun-09 0:14 
AnswerRe: encryption/decrption problem Pin
Colin Angus Mackay18-Jun-09 0:21
Colin Angus Mackay18-Jun-09 0:21 

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.