Hi,
I am a beginner to asp.net. I want to sort a gridview but the problem i m facing is when sort event handler is called the exception of stack over flow is thrown. Following is my code for sorting function.
protected void sortGridView(string strSortExpression)
{
if (strSortExpression != string.Empty)
{
if (ViewState["sortOrder"] == "desc")
{
dgvBookInfo.Sort(strSortExpression, SortDirection.Ascending); //string.Format("{0}{1}", );
}
else
{
dgvBookInfo.Sort(strSortExpression, SortDirection.Descending);
}
}
}
Thanks
I do a lot of design work with XHTML, CSS, and PHP. A friend mentioned Sass to me and it looks pretty cool. I don't know anything about Ruby or Rails and I am running a windows machine.
Does anyone know a good tutorial for a beginner to dig in to something like this?
I keep getting this error on my project and i cant figure it out! please help!
error C2143: syntax error : missing ')' before 'constant'
the line is:
while (selection == ('a','b','c', 'd', 'e', 'f', 'g', 'h', 'i','A','B' 'C', 'D', 'E', 'F', 'G', 'H', 'I');
also i know there is an easier way to write that line out but im not sure how i can do it. im a beginner at this so can any of you pros edit this line for me!
Hi,
I am a beginner developer want to develop a MP3 to AAC converter for Linux. But I don't know how to start as I havn't done any development in Linux before. I am using Ubuntu 10.04. Can anyone tell me how to start and from where? What libraries do I need?
Thanks
Hi, I am beginner and I have this problem. How can I can update dataset with datagridview?
I binding dataset in datagrid.
Edit datagrid.
At finish I want update dataset with datagridview. Thank you form any advice
Hi All,
I am a beginner in ada and i had come across a piece of code which is shown below:
procedure Null_Proc is
begin
null;
end;
Now as per my knowledge the procedure in ada doesn't return anything.My doubt is what does this procedure Null_proc do?I mean i am not clear with the definition of the procedure.
Thanks and regards
Maddy
i AM A HIBERNATE BEGINNER ,Since i need to create dynamic tables with dynamic fields in them i chose to use hibernate . As far as my understanding , creating tables requires a class with the fields defined in the class . How do i generate the classes dynamically based on the table with the required fields ?
I know basic C++ like about classes and other basic stuff what are the things which i need to know so that i can understand the source code of some advance open source projects and be able to make one too.
Like if i read the code of vlc or some other projects I can't understand many things moreover i am just a beginner have not worked on even multi file programs so please suggest which are the books and what are the basic projects from where i can start.
Hi all
Just a stupid beginner's question, which will be quickly solved, but I am curious.
http://www.irian.at/myfacesexamples/home.jsf says:
"MyFaces - The free JavaServer™ Faces Implementation"
Errr ... is Sun's implementation not free, then?
Thanks & Cheers
Er
What I want to do with the fs object is to add multiple "items" to the fs.items property.
How can I do this? You can see my attempt below, obviously this does not work.
I am a beginner, go easy on me :)
Thanks...
var fs = {
name:'test',
items:[]
};
fs.items = {
name:'item1',
value:1
};
fs.items = {
name:'item2',
value:2
}
I am new beginner, is it possible the covert flex data grid to CSV file format with out use any backend (java,php ..) file ? . Because I tried with out use bankend . is it convert or not ? So any one give suggest me . or which is best method to convert ?
Hi guys, I was wondering if is it possible to deploy a jar file in Jetty?
If not, are there applications servers who can do so?
I am beginner. I am asking this question because all the docs that i have found, it seems that we can only deploy war archive in application servers. Is that true?
Hello Experts,
I am Beginner. I want to study and create custom controls. I have searched on Google but didn't find any good stuff.
Could anybody provide me some nice link or explain me that how can I start custom controls.
Thanks in advance.
I am a beginner and for lack of a better way to put this, does MATLAB have a function that will "snap an image" or move an image to some predefined location if within a certain area? I have checked out some forums with no luck so far. Thank you so much for your assistance.
I have to write an iPhone application: to start recording when I have something on the audio channel, then to stop the recording after 1.15 s, to obtain a float array with the audio levels and to compare the value to see if they are 0 or 1. Please give me some ideas...I´m a beginner.
Hi,
I'm a total beginner with Typo3 and would like to show a RSS feed in a Typo3 template using typoscript. And I have no idea how to do this !
Is there any way to do this quite easily ? Calling an external PHP script maybe ?
Thx !
Dear All,
I am beginner to Joomla development, I have created a very simple module,
How to create a form of three textfields in it,
and then insert textfields data into database /.
Any one can help ?
Hi all,
Can anyone please tell me the usage of the following declarations shown below.I am a beginner in ada language.I had tried the internet but that was not clear enough.
type Unsigned_4 is mod 2 ** 4;
for Unsigned_4'Size use 4;
Hi all, Im a .Net beginner. i need to ask something.
if i want to deploy my .net winform application (use 3.5 sp 1) using inno setup.
do i also need to deploy Windows Installer Redistributable package for each user's pc.
Is it mandatory ? thank you.
Hey there. I am creating my first iPhone native app (beginner Objective-C). On my main menu title screen, i would like for the background image to move slowly to the left. Is it possible to tile a background image and have it move? I'm basically trying to have my clouds drift across the background. How would you accomplish this?
I want to query from dbpedia using their sparql interface (http://dbpedia.org/sparql)
I want to get the abstract of
http://dbpedia.org/page/Herbie_Mann
I know that I have to call abstract ontology
http://dbpedia.org/ontology/abstract
and my final sparsql query is like following :
SELECT ?abstract
WHERE {
{ <http://dbpedia.org/page/Herbie_Mann> <http://dbpedia.org/ontology/abstract> ?abstract}
}
but yet I'm not able to see anything.
please help me as I am beginner in semantic web!
Hello All,
I am beginner on WPF and need your help.
Problem:
I have 4 buttons on the form and need to apply 2 different style on pair of 2 buttons.
Is there any way we can achive this ?
please provide me sample if possible...
Thanks in advance...
Hi,
I'm a beginner in java. I want the logic of the small program.
I have two arrays
array = {a1,a2,a3,a4,a5,,,,,,,,,an}
and
array2 = {b1,b2,b3,b4,,,,,,,,,,,bn}
I want string as:
a1b1,a2a3b2b3,a4a5a6b4b5b6,..........an
Please tell me what will be the logic.