2
Answers

frame

aylin_sk

aylin_sk

20y
1.6k
1
I created a web form..And inside it, i made a table but around the table, i wanna make something like a frame..what should i do??Is there a property like a frame for c#??
Answers (2)
0
Albertto Lie

Albertto Lie

NA 309 0 16y
on the top of u'r .cs file there is lot of import syntax
u can use "using" syntax

using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

the next problem, u must know what library u need to import. :D
0
justin  prewett

justin prewett

NA 6 0 16y
yes, u hit it on the nail.

           how do I import on visual  C# express?,also getting rid of syntax errors after debugging.
0
Mahesh Chand

Mahesh Chand

2 286.9k 123.7m 16y

Welcome!

Are you talking about syntax errors? If you build the program, you will see the exact error message. It is probably you need to inport a namespace to use that red-lined class/object.