Click here to Skip to main content
15,902,299 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionsessionID availability check in a page Pin
codeproject_buna30-Nov-07 1:03
codeproject_buna30-Nov-07 1:03 
AnswerRe: sessionID availability check in a page Pin
Frank Kerrigan30-Nov-07 2:49
Frank Kerrigan30-Nov-07 2:49 
QuestionFacing problem related to assambly in resources Pin
Amit Sk Sharma30-Nov-07 0:00
Amit Sk Sharma30-Nov-07 0:00 
QuestionCreating Website in SharePoint using C#/ASP.NET Pin
md Nazeem29-Nov-07 23:37
md Nazeem29-Nov-07 23:37 
AnswerRe: Creating Website in SharePoint using C#/ASP.NET Pin
Frank Kerrigan30-Nov-07 3:04
Frank Kerrigan30-Nov-07 3:04 
Questioncreating html control trough sql query Pin
MaruBindiya29-Nov-07 22:24
MaruBindiya29-Nov-07 22:24 
AnswerRe: creating html control trough sql query Pin
Christian Graus29-Nov-07 23:04
protectorChristian Graus29-Nov-07 23:04 
GeneralRe: creating html control trough sql query Pin
MaruBindiya29-Nov-07 23:18
MaruBindiya29-Nov-07 23:18 
i want somthing like shown below

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
Dim con As New SqlConnection("MyConnectionString")
Dim cmd As New SqlCommand("select '', * from Table1 ", con)
con.Open()
GridView1.DataSource = cmd.ExecuteReader
GridView1.DataBind()
con.Close()
End If
End Sub
this code giving error msg "Incorrect syntax near ' />'."
so result should display grid containing one colmn with textbox.
GeneralRe: creating html control trough sql query Pin
Christian Graus29-Nov-07 23:50
protectorChristian Graus29-Nov-07 23:50 
GeneralRe: creating html control trough sql query Pin
Paddy Boyd30-Nov-07 0:52
Paddy Boyd30-Nov-07 0:52 
GeneralRe: creating html control trough sql query Pin
MaruBindiya30-Nov-07 1:40
MaruBindiya30-Nov-07 1:40 
GeneralRe: creating html control trough sql query Pin
Paddy Boyd30-Nov-07 1:46
Paddy Boyd30-Nov-07 1:46 
GeneralRe: creating html control trough sql query Pin
MaruBindiya30-Nov-07 1:53
MaruBindiya30-Nov-07 1:53 
GeneralRe: creating html control trough sql query Pin
Paddy Boyd30-Nov-07 1:55
Paddy Boyd30-Nov-07 1:55 
GeneralRe: creating html control trough sql query Pin
MaruBindiya30-Nov-07 2:00
MaruBindiya30-Nov-07 2:00 
GeneralRe: creating html control trough sql query Pin
J4amieC30-Nov-07 3:12
J4amieC30-Nov-07 3:12 
QuestionConnection string of ASp.NET Pin
garga129-Nov-07 22:15
garga129-Nov-07 22:15 
AnswerRe: Connection string of ASp.NET Pin
varshavmane29-Nov-07 22:17
varshavmane29-Nov-07 22:17 
AnswerRe: Connection string of ASp.NET Pin
Vasudevan Deepak Kumar29-Nov-07 22:20
Vasudevan Deepak Kumar29-Nov-07 22:20 
GeneralRe: Connection string of ASp.NET Pin
varshavmane29-Nov-07 22:22
varshavmane29-Nov-07 22:22 
QuestionHow to display html text ?? Pin
varshavmane29-Nov-07 22:06
varshavmane29-Nov-07 22:06 
AnswerRe: How to display html text ?? Pin
Christian Graus29-Nov-07 23:08
protectorChristian Graus29-Nov-07 23:08 
GeneralRe: How to display html text ?? Pin
varshavmane29-Nov-07 23:16
varshavmane29-Nov-07 23:16 
GeneralRe: How to display html text ?? Pin
Christian Graus29-Nov-07 23:20
protectorChristian Graus29-Nov-07 23:20 
GeneralRe: How to display html text ?? Pin
varshavmane29-Nov-07 23:36
varshavmane29-Nov-07 23:36 

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.