Click here to Skip to main content
15,887,676 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Listbox Dropdownlist SelectedIndex resets after postback. Pin
Vasudevan Deepak Kumar15-Jun-07 2:39
Vasudevan Deepak Kumar15-Jun-07 2:39 
QuestionHow to keep an image on mouseover in skmmenu control Pin
goutham.sriharsha14-Jun-07 23:24
goutham.sriharsha14-Jun-07 23:24 
Questionreturning pop up value to the calling page Pin
ngrj14-Jun-07 23:07
ngrj14-Jun-07 23:07 
AnswerRe: returning pop up value to the calling page Pin
varshavmane14-Jun-07 23:45
varshavmane14-Jun-07 23:45 
Questionhow to update a gridview Pin
ballameharmurali14-Jun-07 22:55
ballameharmurali14-Jun-07 22:55 
AnswerRe: how to update a gridview Pin
varshavmane14-Jun-07 23:56
varshavmane14-Jun-07 23:56 
GeneralRe: how to update a gridview Pin
ballameharmurali15-Jun-07 0:45
ballameharmurali15-Jun-07 0:45 
GeneralRe: how to update a gridview Pin
varshavmane15-Jun-07 1:01
varshavmane15-Jun-07 1:01 
use this:
For intGridRowcnt = 1 To GridViewQuery.Rows.Count
ml_strValue = ml_strValue & GridView1.DataKeys(intGridRowcnt - 1).Item("ID").ToString() & "$"
ml_strValue = ml_strValue & gvClientInvoice.DataKeys(intGridRowcnt - 1).Item("Name").ToString()

ml_strValue = ml_strValue & "^"
Next

For saving in DB:

arrSplitRows = ClientInvoiceDetails.Split("^")
For i As Int16 = 0 To arrSplitRows.Length - 1
Dim strTemp As String = ""
strSql = ""
strTemp = arrSplitRows(i).ToString
arrSplitsRights = strTemp.Split("$")
'Your Query here.
Next

Hope it helps u???
QuestionProblem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14714-Jun-07 22:44
Pierre14714-Jun-07 22:44 
AnswerRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Sylvester george14-Jun-07 22:54
Sylvester george14-Jun-07 22:54 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14714-Jun-07 22:58
Pierre14714-Jun-07 22:58 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
badgrs14-Jun-07 23:14
badgrs14-Jun-07 23:14 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14714-Jun-07 23:18
Pierre14714-Jun-07 23:18 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
badgrs14-Jun-07 23:31
badgrs14-Jun-07 23:31 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14715-Jun-07 0:07
Pierre14715-Jun-07 0:07 
GeneralRe: Problem with ContentPlaceHolder content format in IE, ok in Firefox Pin
Pierre14715-Jun-07 4:10
Pierre14715-Jun-07 4:10 
QuestionSending Email with attachment Pin
DKalepu14-Jun-07 21:50
DKalepu14-Jun-07 21:50 
AnswerRe: Sending Email with attachment Pin
Sylvester george14-Jun-07 22:20
Sylvester george14-Jun-07 22:20 
GeneralRe: Sending Email with attachment Pin
DKalepu14-Jun-07 22:34
DKalepu14-Jun-07 22:34 
AnswerRe: Sending Email with attachment Pin
N a v a n e e t h14-Jun-07 22:27
N a v a n e e t h14-Jun-07 22:27 
GeneralRe: Sending Email with attachment Pin
Sylvester george14-Jun-07 22:36
Sylvester george14-Jun-07 22:36 
GeneralRe: Sending Email with attachment Pin
N a v a n e e t h14-Jun-07 22:38
N a v a n e e t h14-Jun-07 22:38 
GeneralRe: Sending Email with attachment Pin
_AK_14-Jun-07 22:41
_AK_14-Jun-07 22:41 
GeneralRe: Sending Email with attachment Pin
Sylvester george14-Jun-07 22:45
Sylvester george14-Jun-07 22:45 
GeneralRe: Sending Email with attachment Pin
_AK_14-Jun-07 22:55
_AK_14-Jun-07 22:55 

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.