2
Answers

cms

sasikala ganesan

sasikala ganesan

16y
2.6k
1

hi all,

I would like to create my own small CMS. At this time, I am able to do back office for my customers where they can edit existing conent on their existing pages.

My goal is to create template based CMS, where the administraotr of my CMS will be able to add new pages by their own.

regards,
sasikala

Answers (2)
0
Suresh M

Suresh M

NA 18.6k 1.5m 9y
write this code in new class file and you can call it any form
0
Priya M

Priya M

NA 38 4.1k 9y
I also write this code..
 
but how i will call this code on different form .
0
Suresh M

Suresh M

NA 18.6k 1.5m 9y
Regex pattern = new Regex(@"(?<!\d)\d{10}(?!\d)");

    if(pattern.isMatch(socialSecNumber))
    {
        //Do something
        return true;
    }
    else
    {
        return false;
    }