Click here to Skip to main content
15,886,579 members

Comments by Rajiv Gogoi (Top 10 by date)

Rajiv Gogoi 5-Sep-14 11:38am View    
try this with javascript --
$(document).keydown(function(objEvent) {
if (objEvent.keyCode == 9) { //tab pressed
objEvent.preventDefault(); // stops its action
}
})
Rajiv Gogoi 2-Sep-14 12:12pm View    
might be a path issue. does the path folder exist on server?
Rajiv Gogoi 2-Sep-14 12:03pm View    
I don't think its possible because we aren't using http. we get the metadata because we enable GET in config file.
http://msdn.microsoft.com/en-us/library/ms733109.aspx
Rajiv Gogoi 28-Aug-14 0:11am View    
Thanks. http://www.asp.net/web-forms/tutorials/aspnet-45/getting-started-with-aspnet-45-web-forms/introduction-and-overview
If you double click on the aspx page you will be taken to the code behind. Its a C# class and it has events too e.g. the dropdownlist change event. Write your code there.
In the aspx page, double click the button and the button click handler will be automatically created for you. You also need to learn ADO.NET to access database.
Rajiv Gogoi 27-Aug-14 13:39pm View    
Do you have to use a SQLDataSource ? I guess as the query is getting complicated, the url becomes large due to a large no of query string parameters. I am just assuming, not at all sure about it.
What I can suggest is, don't use SQLDataSource, use proper ADO.NET layer(basically C# classes) and write your logic in code behind. In that way, your code would be more maintanable, you will be able to put debug points and debug and also use best practices. SQLDataSouce is not the best way of connection to database and do CRUD.