Click here to Skip to main content
15,900,511 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionError When gridview property EnableSortingAndPagingCallback set to true (gridview has tempate field column) Pin
xodeblack6-Oct-09 22:24
xodeblack6-Oct-09 22:24 
AnswerRe: Error When gridview property EnableSortingAndPagingCallback set to true (gridview has tempate field column) Pin
Christian Graus6-Oct-09 22:28
protectorChristian Graus6-Oct-09 22:28 
QuestionIs <remove /> tag supported in .net framework 1.1 [modified] Pin
here2learn6-Oct-09 22:23
here2learn6-Oct-09 22:23 
AnswerRe: Is tag supported in .net framework 1.1 Pin
Christian Graus6-Oct-09 22:25
protectorChristian Graus6-Oct-09 22:25 
GeneralRe: Is tag supported in .net framework 1.1 Pin
here2learn6-Oct-09 22:31
here2learn6-Oct-09 22:31 
Questionquery Pin
mylogics6-Oct-09 21:26
professionalmylogics6-Oct-09 21:26 
AnswerRe: query Pin
Abhijit Jana6-Oct-09 21:29
professionalAbhijit Jana6-Oct-09 21:29 
GeneralRe: query Pin
mylogics6-Oct-09 21:46
professionalmylogics6-Oct-09 21:46 
i have written this codde on button click....
BarcodeProfessional1.Code=txtbarcode.Text;
DataSet ds = new DataSet("MyDataSet");
DataTable dt = new DataTable("MyTable");
ds.Tables.Add(dt);
DataColumn dc = new DataColumn("BarcodeImage", typeof(byte[]));
dt.Columns.Add(dc);
DataRow dr = dt.NewRow();
dr["BarcodeImage"] = BarcodeProfessional1.GetBarcodeImage(System.Drawing.Imaging.ImageFormat.Gif);
dt.Rows.Add(dr);
string s = Server.HtmlDecode(ds.GetXml());
Literal1.Text = Server.HtmlDecode(ds.GetXml());
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["Barcode"].ConnectionString);
string str = "Insert Into Product(ProductName,ProductDescrip,ProductQty,ProductPrice,Barcode)Values('" + txtname.Text + "','" + txtdescrip.Text + "','" + TxtQty.Text + "','" + txtPrice.Text + "','" + s + "')";
SqlCommand cmd = new SqlCommand(str, conn);
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();

GeneralRe: query Pin
Christian Graus6-Oct-09 22:07
protectorChristian Graus6-Oct-09 22:07 
Questionhow to enable parent page when ever i get the pop-up message???????????? Pin
srinivassam6-Oct-09 21:13
srinivassam6-Oct-09 21:13 
QuestionHow to add a form of Visual Inheritance to your ASPX site Pin
pkj6-Oct-09 19:48
pkj6-Oct-09 19:48 
AnswerRe: How to add a form of Visual Inheritance to your ASPX site Pin
Abhijit Jana6-Oct-09 21:01
professionalAbhijit Jana6-Oct-09 21:01 
GeneralRe: How to add a form of Visual Inheritance to your ASPX site Pin
N a v a n e e t h6-Oct-09 22:04
N a v a n e e t h6-Oct-09 22:04 
GeneralRe: How to add a form of Visual Inheritance to your ASPX site Pin
pkj6-Oct-09 22:52
pkj6-Oct-09 22:52 
AnswerRe: How to add a form of Visual Inheritance to your ASPX site Pin
N a v a n e e t h6-Oct-09 22:00
N a v a n e e t h6-Oct-09 22:00 
QuestionEditor Pin
Ramkumar_S6-Oct-09 19:28
Ramkumar_S6-Oct-09 19:28 
AnswerRe: Editor Pin
Abhijit Jana6-Oct-09 21:04
professionalAbhijit Jana6-Oct-09 21:04 
AnswerRe: Editor Pin
N a v a n e e t h6-Oct-09 21:58
N a v a n e e t h6-Oct-09 21:58 
QuestionHow to derive aspx page from another aspx page / from user conrol /master page? [modified] Pin
pkj6-Oct-09 19:10
pkj6-Oct-09 19:10 
AnswerRe: How to derive aspx page from another aspx page / from user conrol /master page? Pin
Abhijit Jana6-Oct-09 21:08
professionalAbhijit Jana6-Oct-09 21:08 
GeneralRe: How to derive aspx page from another aspx page / from user conrol /master page? Pin
pkj6-Oct-09 22:51
pkj6-Oct-09 22:51 
QuestionPaging in Gridview Pin
meeram3956-Oct-09 18:31
meeram3956-Oct-09 18:31 
AnswerRe: Paging in Gridview Pin
Christian Graus6-Oct-09 18:43
protectorChristian Graus6-Oct-09 18:43 
GeneralRe: Paging in Gridview Pin
meeram3956-Oct-09 19:00
meeram3956-Oct-09 19:00 
GeneralRe: Paging in Gridview Pin
Christian Graus6-Oct-09 22:17
protectorChristian Graus6-Oct-09 22:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.