Toggle navigation
Log in
Sign Up
Log in
Sign Up
Appium
C
C#
C++
Docker
Go
Informatica
Java
JavaScript
Kafka
Numpy
Oracle
Pandas
PHP
Py Spark
Python
R
React Native
Scipy
SFTP
Tableau
Teradata
TGMC
UNIX
Introducing
Radical.sh
Forget Code launches a powerful code generator for building API's
Forget_Code.Models.CategoryViewModel
Add a new snippet
Access Specifier
6
ADO .Net
3
Basics
16
Collections
1
Console
1
Date Functions
15
Delegates
1
File
7
Keywords
2
LINQ
1
Loops
1
Math Snippets
5
Memory Management
1
Operators
3
Reflection
2
Regular Expressions
3
String Functions
18
String Snippets
8
Threading
1
Type Casting
5
Choose Category
how to add text after comma in asp.net using C# in C#
Forget Code
C#
how to add text after comma in asp.net using C#
In datagridview record as follows
Name Mobileno Changes Message
GS xxxx C Dear GS, sep25(CL2)
I have one button when i click that button in datagridview records will be displayed. The datagridview code as follows
sql = "select message FROM Tb_Track_SCH where Fac_Code = '" + (DGV_Fac_SMS.Rows[i].Cells[0].Value.ToString().Trim()) + "' and Message = '" + (DGV_Fac_SMS.Rows[i].Cells[3].Value.ToString().Trim()) + "'";
oledr = GFun.ReadAcessSql(sql);
if (oledr.HasRows == false)
{
DGV_Fac_SMS[2, i].Value = "C";
}
I want to add Amended TT text after the , in the above datagridview.
When Changes 'C' is appear in the Datagridview i want to add Amended TT text.
I want output as follows
Name Mobileno Changes Message
GS xxxx C Dear GS,Amended TT sep25(CL2)
After comma in the datagridview how can i add the above Amended TT.
how can i do in asp.net using C#.
Contribute to Forget Code, help others.
Add snippet