Click here to Skip to main content
15,868,164 members

Comments by Yuvaraj Arasu (Top 11 by date)

Yuvaraj Arasu 25-Sep-13 23:52pm View    
This is not redirecting-OK, But what's happenning ? like Anything displayed on screen as error or the same page still reloads.. etc.,
Check the ChangePassword.aspx page also resides in the same directory in which your login1.aspx page resides.
Yuvaraj Arasu 25-Sep-13 23:38pm View    
Try to UrlEncode() the ID before concatenate to view page Url
(In-page:StartPage.aspx , In-place: ./NewsView.aspx?ID=<%#Eval("ID") %> )

And, Some other sugessions are,
--> In-page:"View.aspx.cs", In-event:"page_load" you are calling "prepareConnection();" for five times, That is not required. Just call only once at begining of the event.

--> Try to write single function to select simple queries from db and get dataset as return parameter, it'll reduce memory utilization.
Yuvaraj Arasu 25-Sep-13 7:53am View    
Deleted
Try Move the line "dtCurrentTable.Rows.Add(drCurrentRow);" inside
"for(int i = 1; i <= dtCurrentTable.Rows.Count; i++)"
loop
Yuvaraj Arasu 25-Sep-13 7:47am View    
Look at this link :
http://geekswithblogs.net/omtalsania7/archive/2012/12/27/how-to-create-an-image-grid-with-asp.net-44.5-using.aspx
Yuvaraj Arasu 25-Sep-13 7:39am View    
Let us know the DB table structure of GalleryData and CategoryData.
1)Are you want show all the pictures from a given web directory (or) The images and category details will come from database.?