2
Answers

Question about C# .aspx pages(Schedule problem)

Photo of yokzu

yokzu

13y
1.3k
1
Hi,
I am doing some scheduled jobs with C# form applications. For example connecting a db and getting some data. Its not problem with .exe program. Now I wanna build a web site, but I dont know how to do it with .aspx pages. Because .aspx pages only works when they called. How can I do that with .aspx pages?

Answers (2)

0
Photo of itsme
NA 26 0 20y
.................................... richTextBox1.LinkClicked += new LinkClickedEventHandler(Link_Clicked); ................................................ protected void Link_Clicked(object sender, LinkClickedEventArgs e) { ................................................. } Could someone tells me how: when click on an item in the richTexBox1 to display a specific area of the richTextBox1 ?