Click here to Skip to main content
15,890,882 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionupload file ??? Pin
PavanPareta2-Apr-07 21:00
PavanPareta2-Apr-07 21:00 
AnswerRe: upload file ??? Pin
Sathesh Sakthivel2-Apr-07 21:02
Sathesh Sakthivel2-Apr-07 21:02 
GeneralRe: upload file ??? Pin
PavanPareta2-Apr-07 21:44
PavanPareta2-Apr-07 21:44 
AnswerRe: upload file ??? Pin
Paddy Boyd2-Apr-07 21:41
Paddy Boyd2-Apr-07 21:41 
QuestionBind Enum type to dropdown Pin
Sun Rays2-Apr-07 20:40
Sun Rays2-Apr-07 20:40 
AnswerRe: Bind Enum type to dropdown Pin
Sathesh Sakthivel2-Apr-07 20:57
Sathesh Sakthivel2-Apr-07 20:57 
QuestionDataList Pin
samsonx2-Apr-07 20:25
samsonx2-Apr-07 20:25 
AnswerRe: DataList Pin
Vinay Dornala2-Apr-07 21:18
Vinay Dornala2-Apr-07 21:18 
hi see this code template
<itemtemplate>
<asp:textbox>





Protected Sub DataList1_UpdateCommand(ByVal source As Object, _
ByVal e As System.Web.UI.WebControls.DataListCommandEventArgs)
Dim categoryID As String = _
DataList1.DataKeys(e.Item.ItemIndex).ToString()
Dim categoryName As TextBox = _
CType(e.Item.FindControl("textCategoryName"), TextBox)
Dim description As TextBox = _
CType(e.Item.FindControl("textDescription"), TextBox)

SqlDataSource1.UpdateParameters("original_CategoryID"). _
DefaultValue = categoryID
SqlDataSource1.UpdateParameters("categoryName"). _
DefaultValue = categoryName.Text
SqlDataSource1.UpdateParameters("Description"). _
DefaultValue = description.Text
SqlDataSource1.Update()
DataList1.EditItemIndex = -1
DataList1.DataBind()
End Sub
Questionhow to write a event for a dynamically created controll in C# Pin
M.A.Burhan2-Apr-07 19:35
M.A.Burhan2-Apr-07 19:35 
AnswerRe: how to write a event for a dynamically created controll in C# Pin
Tirthadip2-Apr-07 20:05
Tirthadip2-Apr-07 20:05 
QuestionOpen Crystal Report in PDF form Automaticaly Pin
ALAQUNAIBI2-Apr-07 19:30
ALAQUNAIBI2-Apr-07 19:30 
AnswerRe: Open Crystal Report in PDF form Automaticaly Pin
varshavmane2-Apr-07 20:22
varshavmane2-Apr-07 20:22 
GeneralRe: Open Crystal Report in PDF form Automaticaly Pin
ALAQUNAIBI2-Apr-07 21:11
ALAQUNAIBI2-Apr-07 21:11 
GeneralRe: Open Crystal Report in PDF form Automaticaly Pin
varshavmane2-Apr-07 22:36
varshavmane2-Apr-07 22:36 
GeneralRe: Open Crystal Report in PDF form Automaticaly Pin
ALAQUNAIBI3-Apr-07 20:34
ALAQUNAIBI3-Apr-07 20:34 
QuestionExport GridView To Excel Pin
varshavmane2-Apr-07 19:12
varshavmane2-Apr-07 19:12 
AnswerRe: Export GridView To Excel Pin
Sathesh Sakthivel2-Apr-07 19:29
Sathesh Sakthivel2-Apr-07 19:29 
GeneralRe: Export GridView To Excel Pin
varshavmane2-Apr-07 19:50
varshavmane2-Apr-07 19:50 
AnswerRe: Export GridView To Excel Pin
Vinay Dornala2-Apr-07 21:07
Vinay Dornala2-Apr-07 21:07 
GeneralRe: Export GridView To Excel Pin
varshavmane2-Apr-07 21:10
varshavmane2-Apr-07 21:10 
GeneralRe: Export GridView To Excel Pin
Vinay Dornala2-Apr-07 21:31
Vinay Dornala2-Apr-07 21:31 
GeneralRe: Export GridView To Excel Pin
varshavmane2-Apr-07 22:38
varshavmane2-Apr-07 22:38 
GeneralRe: Export GridView To Excel Pin
Vinay Dornala2-Apr-07 23:39
Vinay Dornala2-Apr-07 23:39 
Question.dll hell Pin
sra222-Apr-07 18:51
sra222-Apr-07 18:51 
AnswerRe: .dll hell Pin
Nicejith2-Apr-07 19:43
Nicejith2-Apr-07 19:43 

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.