Take one textbox if I am inputting abc alphabet in capital
letter or in small letter on the button click it will be
bcd or if I enter 123 and it would be 234 like that in
ASP.NET?
Answers were Sorted based on User's Feedback
Answer / nitin kumar nitin@bbspl.com
string str;
str = text4.Text;
string one, two,three;
string four;
char dd;
one = str.Substring(1,2);
three = str.Substring(2, 1);
two = one;
four = three;
dd=char.Parse(four);
int con = Convert.ToInt32(((int)dd).ToString());
string str1 = char.ConvertFromUtf32(con+1);
text5.Text = two + str1;
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / sagnikmukh
i am posting the basic logic,
class Program
{
static void Main(string[] args)
{
string test = "123";
StringBuilder st=new StringBuilder ();
int l;
l = test.Length;
for (int i = l; i > 0; i--)
{
st = st.Append(test.Substring(i - 1,
1).ToString ());
}
Console.WriteLine(st.ToString ());
Console.Read();
}
}
this will be the Button event in ASP.NEt Page.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sharumathi
protected void Button1_Click(object sender, EventArgs e)
{
string str = TextBox1.Text;
byte[] a = System.Text.Encoding.ASCII.GetBytes(str);
byte[] b = { a[1], a[2], (++a[2]) };
string x = System.Text.Encoding.ASCII.GetString(b);
TextBox2.Text = x;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Project Architecture (3tier, n-tier)
How to disable cut, copy and paste in TextBox using jQuery in asp.net?
What is the behavior of a Web browser when it receives an invalid element?
how to add cliet side event to server side? and how to register client script to sever side? wt difference these two
What is syntax code to send email from an asp.net application?
what is the purpose of update panel control in ajax?
Can i have both C# and vb.net code in same assembly?how?
main difference between asp.net2.0,asp.net1.1,asp.net1.0
15 Answers Inflexion, Infosys, iSoft, Microsoft, Prakruthi,
How does SQL Server session state works
List the events in page life cycle.
Write a code for passing ArrayList in Web API?
Give an example appropriate use forweb service as opposed to a non-serviced .NET component
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)