Saluting the brave heroes of Mumbai Attack, I have the deepest respect and gratiude for them but now the big question arises what have our government done to prevent this kind of tragic incident to happen again?
Nishant Singh
Posts
-
Lest we forget - 2008-11-26 -
SQLStatementPost it in Web development forum since this looks to be a question related to ASP, There you might get correct answer , here most people have either not worked on ASP or have forgotten it long time back ;)
-
Click Event of dynamically created Link Button is not workingOn Pageload event repeat the above code
-
GridrowIn ItemCreated event of Parent_Grid you can create a row in the childGrid
-
Date-Time Format in C# and SQL ServerTry to Change the DateFormat to MM/dd/yyyy before inserting into database Like this
DateTime.Today.ToString("dd-MMM-yyyy")
-
GridView is Caching does not UpdateAnother Page is opening in PopUp ???
-
ASP .Net Datatable ProblemIf you are using dotNetFramework 3.5 using Linq would be the easiest way
-
how do i get IST time format.Try Culture Settings (HI-IN)
-
Customize gridviewYou can put a label in the template column , and onclick event of the label show the dropdown
-
Getting cell values for selected rows in server sideSelected Index will give you the selected row, and for each cell in RowDataBound attach a javascript function which updates a hdnValue on click , Access that hidden value to find row and column combination
-
error when running in serverThere seems to be an error is occuring when the page loads , do you have any kind of Error Log for your application ? If any error log is there then you can get what exactly is the error . or change the web config as directed and then check Nish
-
Help in product developmentHi Naina, I think the best approach will be to segregate the Presentation Layer Business Layer Data Access Layer Use Business Layer for the customised business rules for the organization But the drawback is you have to write seperate business layer each time you deploy it for a different organization. What I think is Use Factory pattern , Meaning Add a Abstract Class BusinessLayer and Let BusinessLayer for all organization inherit from it , and return new BusinessClass Object as applicable Nish
-
Help in product developmentHi Naina , Good question..... but don't you think that every organization will have different business logic for HR ,leaveManagement, Travel ETC, So in this case I think the main change would be at business layer ????
-
Add textbox column at the end of Gridview columns dynamicallyTry this in RowDataBound method ,
-
transfer a key value from a page to a popup page "on selected index change" of a gridviewCall a javascript function on change of DropDown and use window.open in that , and pass whatever value you need to as querystring Regards Nishant
-
Grid view Problem while displaying item templateImplement it on RowDataBound event of GridView
-
Updating Control outside Update pannelOr you could put ASP:Panel inside another update Panel and set it's update mode to Always, But I think javascript will still be better
-
Display Image in gridview store in databaseWhat is the error that you are getting??
-
Gridview total number of rowsHi Srinandan, Set the page count to Last page
gr.CurrentPageIndex=gr.PageCount-1;
gr.Rows.CountYou will get the rows on the last page .
-
Display Image in gridview store in databaseRefer this article C# Image to Byte Array and Byte Array to Image Converter Class[^]