in my .c file i have a struct atop of the program defined as follows:
#define MAX 10
int curtab;
static struct tab {
int count;
int use;
} tab[MAX];
with the initial function following it like so:
int tab_create(int init_count)
{
int i;
for(i=0; i < MAX; i++)
{...
I am trying to upgrade my menu bar to a switch-menu bar found here (http://www.dynamicdrive.com/dynamicindex1/slashdot.htm)
How do I use the .css and .js that is provided with this demo for my existing website?
Is it possible to envoke methods and procedures from an existings C# file and use them in a Web Application?
For example: Is this possible?
"test.cs"
using System;
namespace test
{
public class test()
{
string test()
{
return "Hello World";
}
}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.