Click here to Skip to main content
15,899,475 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: "Could not load type 'pagename'" error on build in VS2008 Pin
Perry Holman7-May-09 23:22
Perry Holman7-May-09 23:22 
GeneralRe: "Could not load type 'pagename'" error on build in VS2008 Pin
goodideadave8-May-09 6:26
goodideadave8-May-09 6:26 
Question[newbie] Unrecognized '@' block type. Pin
jon-807-May-09 9:00
professionaljon-807-May-09 9:00 
AnswerRe: [newbie] Unrecognized '@' block type. Pin
Abhijit Jana7-May-09 19:11
professionalAbhijit Jana7-May-09 19:11 
GeneralRe: [newbie] Unrecognized '@' block type. Pin
jon-807-May-09 21:55
professionaljon-807-May-09 21:55 
QuestionGridView - PageIndexChanging not handled Pin
MarkMokris7-May-09 8:51
MarkMokris7-May-09 8:51 
AnswerRe: GridView - PageIndexChanging not handled Pin
SayreCC7-May-09 14:39
SayreCC7-May-09 14:39 
AnswerRe: GridView - PageIndexChanging not handled Pin
Perry Holman7-May-09 23:32
Perry Holman7-May-09 23:32 
You are binding the DataSource manually, so in this case you have to override the PageIndexChanging and PageIndexChanged handler. For example,

protected void GridViewXXX_PageIndexChanged(object sender, EventArgs e)
{
this.SqlDataSourceXXX.SelectCommand = "XXX";
}
protected void GridViewXXX_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
this.GridViewXXX.PageIndex = e.NewPageIndex;
}

Welcome to www.softwaretree.net!
This website is generated completely by static html pages transforming technology.
You can find many excellent audio/video tools there!

Questionhow we create autogenerated textbox in gridview Pin
rummer7-May-09 8:08
rummer7-May-09 8:08 
AnswerRe: how we create autogenerated textbox in gridview Pin
EssamDev7-May-09 13:52
EssamDev7-May-09 13:52 
Questioncode for a multiline textbox Pin
rummer7-May-09 8:05
rummer7-May-09 8:05 
AnswerRe: code for a multiline textbox Pin
Christian Graus7-May-09 11:49
protectorChristian Graus7-May-09 11:49 
Questionerror on sending mail Pin
Any_India7-May-09 5:39
Any_India7-May-09 5:39 
AnswerRe: error on sending mail Pin
I am BATMAN7-May-09 7:13
I am BATMAN7-May-09 7:13 
GeneralRe: error on sending mail Pin
Any_India7-May-09 20:07
Any_India7-May-09 20:07 
AnswerRe: error on sending mail Pin
Abhijit Jana7-May-09 7:41
professionalAbhijit Jana7-May-09 7:41 
AnswerRe: error on sending mail Pin
Perry Holman7-May-09 23:41
Perry Holman7-May-09 23:41 
QuestionUpdating comfirmation box by commandfield. Pin
magshine7-May-09 5:22
magshine7-May-09 5:22 
QuestionLiveUI 0.4 released (Extjs => ASP.net bridge) Your opinion? Pin
Alexandr Sergeevich Ilyin7-May-09 5:03
Alexandr Sergeevich Ilyin7-May-09 5:03 
AnswerRe: LiveUI 0.4 released (Extjs => ASP.net bridge) Your opinion? Pin
ToddHileHoffer7-May-09 8:34
ToddHileHoffer7-May-09 8:34 
GeneralRe: LiveUI 0.4 released (Extjs => ASP.net bridge) Your opinion? Pin
Alexandr Sergeevich Ilyin7-May-09 21:29
Alexandr Sergeevich Ilyin7-May-09 21:29 
AnswerRe: LiveUI 0.4 released (Extjs => ASP.net bridge) Your opinion? Pin
Vasudevan Deepak Kumar7-May-09 22:10
Vasudevan Deepak Kumar7-May-09 22:10 
GeneralRe: LiveUI 0.4 released (Extjs => ASP.net bridge) Your opinion? Pin
Alexandr Sergeevich Ilyin7-May-09 22:44
Alexandr Sergeevich Ilyin7-May-09 22:44 
QuestionUpdate panel with response.write Pin
mahesvs7-May-09 4:48
mahesvs7-May-09 4:48 
GeneralWebsite Application Deployment Issue Pin
newc17-May-09 3:55
newc17-May-09 3: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.