Click here to Skip to main content
15,918,742 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: positioning controls on web page without using table Pin
Abhijit Jana3-Aug-09 19:55
professionalAbhijit Jana3-Aug-09 19:55 
Questionproperty classes Pin
rajni_nanu3-Aug-09 19:13
rajni_nanu3-Aug-09 19:13 
AnswerRe: property classes Pin
Abhijit Jana3-Aug-09 19:26
professionalAbhijit Jana3-Aug-09 19:26 
AnswerRe: property classes Pin
John-ph3-Aug-09 19:30
John-ph3-Aug-09 19:30 
Questionusername and password Pin
rajni_nanu3-Aug-09 19:12
rajni_nanu3-Aug-09 19:12 
AnswerRe: username and password Pin
Abhijit Jana3-Aug-09 19:23
professionalAbhijit Jana3-Aug-09 19:23 
GeneralRe: username and password Pin
rajni_nanu6-Aug-09 0:09
rajni_nanu6-Aug-09 0:09 
AnswerRe: username and password Pin
John-ph3-Aug-09 19:27
John-ph3-Aug-09 19:27 
GeneralRe: username and password Pin
rajni_nanu6-Aug-09 0:12
rajni_nanu6-Aug-09 0:12 
QuestionShowing Data Vertically Pin
Srikanth19873-Aug-09 19:06
Srikanth19873-Aug-09 19:06 
AnswerRe: Showing Data Vertically Pin
Mike Ellison3-Aug-09 19:11
Mike Ellison3-Aug-09 19:11 
QuestionRe: Showing Data Vertically Pin
Srikanth19873-Aug-09 19:29
Srikanth19873-Aug-09 19:29 
AnswerRe: Showing Data Vertically Pin
Mike Ellison4-Aug-09 2:50
Mike Ellison4-Aug-09 2:50 
AnswerRe: Showing Data Vertically Pin
Abhijit Jana3-Aug-09 19:22
professionalAbhijit Jana3-Aug-09 19:22 
QuestionSerial number in dataset Pin
yesu prakash3-Aug-09 17:55
yesu prakash3-Aug-09 17:55 
AnswerRe: Serial number in dataset Pin
r a m e s h3-Aug-09 18:06
r a m e s h3-Aug-09 18:06 
Use AutoIncrement, AutoIncrementSeed, and AutoIncrementStep properties for a DataColumn with type Int16, Int32 and Int64.

  DataColumn column = new DataColumn();
  column.DataType = System.Type.GetType("System.Int32");
  column.AutoIncrement = true;
  column.AutoIncrementSeed = 1000;
  column.AutoIncrementStep = 10;

// Add the column to a new DataTable.
  DataTable table = new DataTable("table");
  table.Columns.Add(column);

AnswerRe: Serial number in dataset Pin
N a v a n e e t h3-Aug-09 18:49
N a v a n e e t h3-Aug-09 18:49 
QuestionAnyone use StructureMap in an asp.net site? I'm having an issue. Pin
Goalie353-Aug-09 17:52
Goalie353-Aug-09 17:52 
AnswerRe: Anyone use StructureMap in an asp.net site? I'm having an issue. Pin
N a v a n e e t h3-Aug-09 18:55
N a v a n e e t h3-Aug-09 18:55 
GeneralRe: Anyone use StructureMap in an asp.net site? I'm having an issue. Pin
Goalie353-Aug-09 19:08
Goalie353-Aug-09 19:08 
GeneralRe: Anyone use StructureMap in an asp.net site? I'm having an issue. Pin
N a v a n e e t h3-Aug-09 22:12
N a v a n e e t h3-Aug-09 22:12 
Questionwebbrowser inside website Pin
nelsonpaixao3-Aug-09 15:25
nelsonpaixao3-Aug-09 15:25 
AnswerRe: webbrowser inside website Pin
N a v a n e e t h3-Aug-09 16:26
N a v a n e e t h3-Aug-09 16:26 
GeneralRe: webbrowser inside website Pin
nelsonpaixao4-Aug-09 15:35
nelsonpaixao4-Aug-09 15:35 
AnswerRe: webbrowser inside website Pin
Christian Graus3-Aug-09 16:28
protectorChristian Graus3-Aug-09 16:28 

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.