16,017,100 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Ali Al Omairi(Abu AlHassan) (Top 147 by date)
Ali Al Omairi(Abu AlHassan)
16-Jul-23 5:40am
View
It is not about reading minds or driving cars. I just want to show a list of active directory emails so a user can select from this list to invite them.
Thanks for clearifing, this is appreciated but I thought it was obvious because I mentioned that I use Exchange
Ali Al Omairi(Abu AlHassan)
16-Jul-23 4:09am
View
Do you mean that when you select a file the content of the file should be populated to datagrid?
If so you can check this link (https://learn.microsoft.com/en-us/dotnet/standard/linq/linq-xml-overview)
Ali Al Omairi(Abu AlHassan)
7-Feb-22 5:56am
View
I think you can use the SelectedText property
Ali Al Omairi(Abu AlHassan)
7-Feb-22 5:53am
View
Elmin, you made your application with c# windows form, right?
can you post your code so i can see what is wrong with it?
Ali Al Omairi(Abu AlHassan)
7-Feb-22 5:28am
View
hi;
your answer is great. I think you hit the point, but I think the if statement is good and should be edited to
if (indextoremove <= jpg.Length && File.Exists(jpg[indextoremove - 1])) for jpg and
if (indextoremove - jpg.Length <= png.Length && File.Exists(png[indextoremove - jpg.Length - 1])) for png
Ali Al Omairi(Abu AlHassan)
30-Jan-22 7:59am
View
I think he is seeking an idea not trying to learn C++
Ali Al Omairi(Abu AlHassan)
7-Aug-20 11:53am
View
My friend your code is very far away than the problem which was posted and answered 9 years ago.
I think you deserved to be down voted
Ali Al Omairi(Abu AlHassan)
6-Jun-19 4:25am
View
The idea of this solution is to sortern the original array by 1 each time we pick an item, so the sample space will enshort evry time by 1 so we can add the statement a.length = 20-n; after assigning the empty slot a[i] to the last smple in the space.
The one mistake in the code abve would apeare in the statement of generating the random number becase the result would be a random number between 1 and 20 but the index of the iruginal array can be 0 to 19 so we can fix that by editing the statement to i = Math.floor(Math.rand() * (20 - n));
Ali Al Omairi(Abu AlHassan)
11-Mar-18 8:22am
View
I think you need to group your data before you call json_encode() as you want more than a flat array
Ali Al Omairi(Abu AlHassan)
11-Mar-18 8:05am
View
I doesn’t seem clear to me what your problem is, but I guess your problem is in the client side. If so, you can handle it with JavaScript and jquery
Ali Al Omairi(Abu AlHassan)
2-Apr-15 18:52pm
View
Thank you for the advice "Member 10236318" i would consider it.
Ali Al Omairi(Abu AlHassan)
3-Dec-13 4:30am
View
search google with the query of 'How to Create and Configure Virtual Directories in IIS' and you can find your solution.
Ali Al Omairi(Abu AlHassan)
21-Nov-13 1:56am
View
Then create a virtual directory from iis.
Ali Al Omairi(Abu AlHassan)
17-Nov-13 8:13am
View
on your browser, open the page then press F12 to display developer tools and click the console tab.
now try to write some thing tn the text field and notice the messages appears in the console pane.
Ali Al Omairi(Abu AlHassan)
12-May-12 5:09am
View
did you handle PageIndexChanging and PageIndexChanged events?
Ali Al Omairi(Abu AlHassan)
26-Apr-12 10:36am
View
please send me the the markups of your page and the javascript you are using.
Ali Al Omairi(Abu AlHassan)
15-Mar-12 9:09am
View
Sir;
Lets analyze it logically.
the link button "LinkButton1" is rendered as an HTML anchor with href of __doPostBack(target, args) or DoPostBackWithOptiont(...) to make a post back to the page.
<a href="javascript:__doPostBack(...);">Location 1</a>
You should prevent this post back by returning false in the onclick event. just like:
<asp:LinkButton ID="LinkButton1" runat="server" Text="Location 1" OnClientClick="javascript:NT1();return false;" />
this will be rendered as:
<a href="javascript:__doPostBack(...);" onclick="javascript:NT1();return false;">Location 1</a>
Ali Al Omairi(Abu AlHassan)
19-Feb-12 3:47am
View
Over my head, ya Basha!
Ali Al Omairi(Abu AlHassan)
17-Feb-12 16:19pm
View
Sir; do you use an UpdatePanel?
Ali Al Omairi(Abu AlHassan)
1-Feb-12 19:51pm
View
Deleted
OK,
The first request is made by calling __doPostBack(eventtarget, eventargment) which uses PageRequestManager to send an xmlHttpRequent to the current page. But the other request uses JQuery.ajax(options) to design and send an xmlHttpRequest to a specific url.
The deference between the two request is that the first request may contain unnecessary data (e.g. Request.Form[cmdBimd.UniqueID] = "Bind Some Data") and so a larger request. The second one contains just the necessary data to identify the event requested so the request will remain small.
The reason i put both requests in my example is to feel the deference. An other good reason to choose JQuery is that PageRequestManager uses one instance of xmlHttpRequest to send all post-backs(e.g. consider two Buttons each one is responsible about refreshing an UpdatePanel, click the respectively and see what happens).
An Alternating way (to the second request) is to call a ServiceMethod through xmlHttpRequest and to use JSON to pass the parameters (As what you just said.)
Ali Al Omairi(Abu AlHassan)
31-Jan-12 11:04am
View
Deleted
See my friend;
if you asked the same question twice, the first time you might get an answer, the next time you would get a kick.
Ali Al Omairi(Abu AlHassan)
31-Jan-12 9:36am
View
Deleted
Well ...,
I don't see your mind. does it mean you don't have one?
Ali Al Omairi(Abu AlHassan)
27-Sep-11 2:45am
View
Sir; I don't really understand your question as I have no idea about how the markups are arranged. but commonly most modal popup issues are about z-index.
please sir post your code and especially the markups.
Ali Al Omairi(Abu AlHassan)
24-Sep-11 11:42am
View
Complete Answer, 5+.
But why Beginning from zero(its not an array).
Ali Al Omairi(Abu AlHassan)
24-Sep-11 11:11am
View
Please send the markups of your grid.
Ali Al Omairi(Abu AlHassan)
21-Sep-11 9:47am
View
what is the values of ConnectionString4 and ConnectionString4.Provider?
Ali Al Omairi(Abu AlHassan)
19-Sep-11 2:32am
View
30% x 3 = 90%, the remaining is 10%. is it for Classic ASP?
Ali Al Omairi(Abu AlHassan)
16-Sep-11 14:36pm
View
i think, this happens because you are using the variables c2 and b2 as implit global variales.
Try to delare them explicetly.
Ali Al Omairi(Abu AlHassan)
15-Sep-11 11:03am
View
Sir;
text/html is not a ratio its a reponse type
Ali Al Omairi(Abu AlHassan)
15-Sep-11 10:53am
View
i think, getElementsByName('SharedName') for radio buttons and check boxes is much better than getElementById('ConntrolID'), because these controls usually group together by name.
Ali Al Omairi(Abu AlHassan)
15-Sep-11 10:43am
View
would you please give us the code?!
Ali Al Omairi(Abu AlHassan)
15-Sep-11 2:25am
View
Datasource is the path to the db server(host\instance);
the '.' means local host(the host on which the application is running).
'SQLEXPRESS' is the name of SQL Server instance to connect to.
AttachDbFile is the path to the database file on the given host.
Security weather a username and a password should be provided.
this configuration should be saved in web.config
as an advice, you should learn to ask google beffore asking people.
Ali Al Omairi(Abu AlHassan)
14-Sep-11 6:39am
View
you should change it to connect to the database that is accessible to the server(the host).
Ali Al Omairi(Abu AlHassan)
14-Sep-11 5:45am
View
no, it is not necessary because the server sends response as an html text you just need it on the server.
Ali Al Omairi(Abu AlHassan)
14-Sep-11 5:36am
View
the host cannot reach the sql server specified.
did you change the connection string for the host? (you would find it in web.config)
Ali Al Omairi(Abu AlHassan)
13-Sep-11 11:06am
View
Sir;
to add a comment to somebody's answer you should click the link 'Have a Question or Comment?' below the solution.
Ali Al Omairi(Abu AlHassan)
13-Sep-11 11:03am
View
Sir;
Please, take a look to Solution 2 for Kammisetty's comment on you solution.
Ali Al Omairi(Abu AlHassan)
13-Sep-11 10:54am
View
What Browser are you using?
Ali Al Omairi(Abu AlHassan)
13-Sep-11 10:46am
View
It Seems like some assemblies are missing or some thing.
So, please add the following to web.config just after <system.web>
<customerrors mode="Off" />
Ali Al Omairi(Abu AlHassan)
13-Sep-11 10:36am
View
Good Answer, My friend ... Good Answer;
Ali Al Omairi(Abu AlHassan)
4-Aug-11 6:18am
View
Hi, My friend;I am seeing my code, I thought you were busy.
Look; Sir, I don't understand what is the 'Actual Results' and what is the 'Expected Results'.
Please Elaborate.
one more thing, you have to change the code:
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "startupscript", startupscript.ToString(), true);
to
this.Page.ClientScript.RegisterStartupScript(this.GetType(), this.UniqueID, startupscript.ToString(), true);
so every instant of the control will be registered uniquely.
Ali Al Omairi(Abu AlHassan)
5-Jul-11 7:58am
View
Did you add it to 'App_Data' folder?
Ali Al Omairi(Abu AlHassan)
22-Jun-11 16:55pm
View
try to replace (GridViewRow)((Control)e.CommandSource).NamingContainer with e.Row and see if this helps.
Ali Al Omairi(Abu AlHassan)
6-Jun-11 10:59am
View
actually i am "Sir" don't you see 'Abu AlHassan' in the brackets above.In Arabic Abu means father (the father of AlHassan). a fatther can't be femail,can he?
about your question look below.
Ali Al Omairi(Abu AlHassan)
6-Jun-11 7:02am
View
wait a minute did you use Image.Visible = false
if so use Image.style.Add("display","none)")
on clientClick use $get('<%Image.ClientID %>').style.display = 'block';
Ali Al Omairi(Abu AlHassan)
6-Jun-11 6:25am
View
call the method validate.
Ali Al Omairi(Abu AlHassan)
29-May-11 2:08am
View
I don't think your comment was reasonable because I don't need to pass the listview in the query string,I just need the id to be passed through the query string. the other information will be found on the server-side.
100 :rose:
Ali Al Omairi(Abu AlHassan)
28-May-11 8:51am
View
ok,.. forgive my mistake!
Ali Al Omairi(Abu AlHassan)
28-May-11 8:50am
View
Deleted
ok,.. forgive my mistake!
Ali Al Omairi(Abu AlHassan)
28-May-11 7:46am
View
I am sorry about the first one.
look you get this error because you are trying to serialize an array of type FileUpload which is non-serializable. i think you should use fileupload.FileBytes to save in the session. look at my answer.
Ali Al Omairi(Abu AlHassan)
27-May-11 18:23pm
View
i think you set the url property to the name of the file.
Ali Al Omairi(Abu AlHassan)
27-May-11 18:02pm
View
where is the online code exsample?
Ali Al Omairi(Abu AlHassan)
29-Apr-11 7:37am
View
I like that; 5+
Ali Al Omairi(Abu AlHassan)
28-Apr-11 18:17pm
View
why dont you toggle display 'block' and 'none' ;
Ali Al Omairi(Abu AlHassan)
28-Apr-11 17:12pm
View
hundred of roses man, great links;
Ali Al Omairi(Abu AlHassan)
28-Apr-11 17:08pm
View
i agree its realy cool.
you know what the cp is a great site every day i learn new things from this site.
Ali Al Omairi(Abu AlHassan)
28-Apr-11 16:59pm
View
Thank you,sir;
Ali Al Omairi(Abu AlHassan)
17-Apr-11 9:23am
View
Right, user experience guidlines exists to make the user familiar with your application,and should be followed. But sometimes you need to break this rule for good resons.
there is no rule shouden't be broken, and there is no rule shoudn't be followed.
Ali Al Omairi(Abu AlHassan)
17-Apr-11 2:02am
View
Sir, does Adding the attribute 'OnFocusedRowChanged="ASPxGridView1_FocusedRowChanged"' solve the problem?
Ali Al Omairi(Abu AlHassan)
15-Apr-11 7:42am
View
ok, what error it gives?
Ali Al Omairi(Abu AlHassan)
14-Apr-11 6:37am
View
you kow my friend, if you don't be not careful you wort survive here.
Ali Al Omairi(Abu AlHassan)
14-Apr-11 5:32am
View
over my head, Sir;
how great are you !!
Ali Al Omairi(Abu AlHassan)
14-Apr-11 4:31am
View
then accept any solution.
Ali Al Omairi(Abu AlHassan)
14-Apr-11 4:16am
View
over my head, sir;
i like te idea of the handler.
hundred of roses
Ali Al Omairi(Abu AlHassan)
14-Apr-11 3:56am
View
over my head, sir.
hundred of roses
Ali Al Omairi(Abu AlHassan)
14-Apr-11 3:36am
View
I dont think saving password in session is a good idea. and replace var with string.
+5
Ali Al Omairi(Abu AlHassan)
13-Apr-11 9:57am
View
then you need to implement IMessageFilter
Ali Al Omairi(Abu AlHassan)
7-Apr-11 16:27pm
View
is the grid in an update panel? or you maight not bind it on load?
Ali Al Omairi(Abu AlHassan)
4-Apr-11 11:01am
View
how about developing a custom cortrol extended from ToolStripMenuItem amd handlind Mouse events.
Ali Al Omairi(Abu AlHassan)
4-Apr-11 10:09am
View
tankks for your points, sir.
a hundred of roses.
Ali Al Omairi(Abu AlHassan)
4-Apr-11 7:03am
View
you tricked me, sir. I was down voted.
Ali Al Omairi(Abu AlHassan)
4-Apr-11 6:54am
View
Sir;they say: 'a soldier doesn't drop his weapons'
but you know what, i am not a soldier.I'll take your advice, sir.
100 <IMG alt="Rose | [Rose]" align=top src="/script/Forums/Images/rose.gif">
Ali Al Omairi(Abu AlHassan)
4-Apr-11 5:54am
View
... , shall i open a new project, then..?
look at the defintion of .Style1 in the .css file. which i cant see.
Ali Al Omairi(Abu AlHassan)
4-Apr-11 3:09am
View
sir; you know what, I hate points.
Ali Al Omairi(Abu AlHassan)
3-Apr-11 14:04pm
View
i am not going to read this!!.
Ali Al Omairi(Abu AlHassan)
3-Apr-11 14:01pm
View
hi mostafa;
i think you should add the onclick attribute to the row in RowDataBound event.
Ali Al Omairi(Abu AlHassan)
21-Mar-11 6:23am
View
Sir, its 'Mika'
Ali Al Omairi(Abu AlHassan)
20-Mar-11 19:31pm
View
Sir, I have fixed my code to get something working. at the end i should thank you for making time thinking in my problim.
All my Respect, Sir;
Ali Al Omairi(Abu AlHassan)
20-Mar-11 19:27pm
View
Deleted
Sir, I have fixed my code to get something working. at the end i should thank you for making time thinking in my problim.
All my Respect, Sir;
Ali Al Omairi(Abu AlHassan)
20-Mar-11 17:20pm
View
Basha, I saw your article and it was very helpfull. what i am thinking of is 'the opposite'. or in other works how to use Begin Request. Sir, I started with the code:
window.onload = function() {
var prm = Sys.WebForms.PageRequestManager.getInstance();
if (prm != null) {
prm.add_beginRequest(function(sender, args) {
if ((args.get_postBackElement()).id == ‘<%= Button1.ClientID %>’)
document.getElementById('<%= UpdateProgress1.ClientID %>').style.display='none';
});
} but this didn't work yet. any suggestion;
}
Ali Al Omairi(Abu AlHassan)
20-Mar-11 17:03pm
View
thank you, sir for this advice. what i mean that i cant take a decision like "we should rewrite the whole application." in the other hand, i am sure that the requirement will change just like a magical trick (this happens all the time).
what i think wha iif he refused my suggestion so i have to find more alternatives. and at least i am learning.
hundred o f roses; Ali.
Ali Al Omairi(Abu AlHassan)
20-Mar-11 12:29pm
View
thank you, sir. but i have to use one update progress as i am not the team leader.
Ali Al Omairi(Abu AlHassan)
20-Mar-11 4:23am
View
"Future is in our hands"
handred of roses;
Ali Al Omairi(Abu AlHassan)
17-Mar-11 19:02pm
View
please suggest a code or a link to some one.
Ali Al Omairi(Abu AlHassan)
17-Mar-11 19:00pm
View
you mean document.getElementById('<%= TextBox1.ClientID %>') ?!
Ali Al Omairi(Abu AlHassan)
17-Mar-11 18:56pm
View
he must having no hierarchy (a control on a page with no master or any parent conrol)
Ali Al Omairi(Abu AlHassan)
15-Mar-11 19:51pm
View
you know what, i down voted you by mistake.
Sorry!
Ali Al Omairi(Abu AlHassan)
15-Mar-11 18:58pm
View
Good Answer, Sir.
Ali Al Omairi(Abu AlHassan)
13-Mar-11 6:58am
View
<asp:Button ID="Button1" runat="server" /> :)
Ali Al Omairi(Abu AlHassan)
13-Mar-11 6:04am
View
over my head, Sandeep basha, but i don't think that Form.submit() comes with asynchronous post-back.
100 :rose:
Ali Al Omairi(Abu AlHassan)
11-Mar-11 11:57am
View
over my head, Sir;
100 :rose:
Ali Al Omairi(Abu AlHassan)
8-Mar-11 16:17pm
View
tell me how.
Ali Al Omairi(Abu AlHassan)
5-Mar-11 7:51am
View
don't you have got a eraser?!!
Ali Al Omairi(Abu AlHassan)
5-Mar-11 7:36am
View
you can add a comment to his answer.
Ali Al Omairi(Abu AlHassan)
5-Mar-11 7:35am
View
JBenhart said: "Can you elaborate? I don't know that much about that. "
Ali Al Omairi(Abu AlHassan)
5-Mar-11 7:18am
View
it is me too!!
Ali Al Omairi(Abu AlHassan)
5-Mar-11 7:11am
View
make an intermedeate class.
Ali Al Omairi(Abu AlHassan)
5-Mar-11 7:07am
View
I voted for you. (remember me) ;)
Ali Al Omairi(Abu AlHassan)
22-Feb-11 11:02am
View
Sir, would you please mention the reson.
Ali Al Omairi(Abu AlHassan)
21-Feb-11 5:26am
View
thank you, sir.
Ali Al Omairi(Abu AlHassan)
17-Feb-11 4:23am
View
Sir, How about enabling event validation on control level? do you have any idea for that?
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
17-Feb-11 3:43am
View
Sir, you shouldn't remove 'and', you should add it; the result should be :
dirSearcher.Filter = String.Fomat("(objectClass='Computer') and (cn ='{0}')", compuDesc ) '(objectClass='Computer') and (cn ='RM212')
Ali Al Omairi(Abu AlHassan)
16-Feb-11 4:42am
View
i think the key word 'and' can solve the issue. :)
Ali Al Omairi(Abu AlHassan)
14-Feb-11 3:38am
View
me sorry, me no mean to.
if me bathar you, me shood abalgese.
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
13-Feb-11 20:30pm
View
Sir, your response is freezing to death.
Ali Al Omairi(Abu AlHassan)
13-Feb-11 20:13pm
View
me sorry, me no good on englisia.
but any way you should not had to get too hot (calm down, this would kill no body)
Ali Al Omairi(Abu AlHassan)
13-Feb-11 19:36pm
View
Sir, how about my answer?!!
Ali Al Omairi(Abu AlHassan)
13-Feb-11 19:18pm
View
..and, have mine.
Ali Al Omairi(Abu AlHassan)
13-Feb-11 19:16pm
View
good..!! have a 5+
Ali Al Omairi(Abu AlHassan)
13-Feb-11 19:04pm
View
good, this reminds me with the first ASP.NET application i developed.
100 :rore: ;)
Ali Al Omairi(Abu AlHassan)
13-Feb-11 18:54pm
View
Great..!!
you found you own way, Congratulations!!
100 :rose ;)
Ali Al Omairi(Abu AlHassan)
13-Feb-11 18:50pm
View
sir, I don't think that you can close a Form then execute any code after that in the same object.
Ali Al Omairi(Abu AlHassan)
13-Feb-11 18:38pm
View
Sir, if you used 'frmTwo' as a modal dialog, form 'frmOne' should be kept not disposed because its the parent of 'frmOne'.
Ali Al Omairi(Abu AlHassan)
13-Feb-11 18:24pm
View
wel.. i think it was 100 :rose: or "A hundred of flowers"; in jordan we use this expression to tell that every thing is good and we are satisfied (just like the american 'Cool!'). we use the 100 all together (on flower wont be enough) :)
100 :rose:
Ali Al Omairi(Abu AlHassan)
13-Feb-11 18:09pm
View
over my head, sir. i can see you comments everywher.
100 :rose:
Ali Al Omairi(Abu AlHassan)
13-Feb-11 18:06pm
View
ok,sir. lets start from the begining.
add a ListView to your form with some events handled, and improve your question.
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
13-Feb-11 17:53pm
View
Sir, I think SA soution is good. I used something like that in the past when i was developing some similar program (as gmf's). but i think using string.Split and just use no "Magic" is a stupid thing. so is there any way to exclude a complete word from a regular expression?
Ali Al Omairi(Abu AlHassan)
13-Feb-11 17:09pm
View
I am still in your side, Manfred. 5+
Ali Al Omairi(Abu AlHassan)
13-Feb-11 17:05pm
View
Sir I thing that you should give him anotheer chance.
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
13-Feb-11 16:52pm
View
ok, sir. this was stupid from me. but really i wanted to help.
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
13-Feb-11 16:46pm
View
good alternative, sir.
Ali Al Omairi(Abu AlHassan)
13-Feb-11 16:44pm
View
Sir, you are doing realy good. 5+
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
13-Feb-11 16:21pm
View
OK, Sir. As you Command. Sir!!
:cool:
Ali Al Omairi(Abu AlHassan)
13-Feb-11 16:01pm
View
your mission?!! OK,Soldier. You can relax. :)
but sir, I think he's trying to get commands from user, so i think Regex is fine.
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
12-Feb-11 13:28pm
View
Sir, you said
1)lstclnt in client project
2)lstsv in server project
How did you transfer the data? (via TCP?)
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
12-Feb-11 12:22pm
View
Sir, i am not interested in reading your ASP code. but according to your description you need to add a trigger to your update panel.
Ali Al Omairi(Abu AlHassan)
12-Feb-11 11:29am
View
how about auto complete textbox?!!
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
12-Feb-11 11:15am
View
this is interisting,man. but i dont think the first code is neccesary where you can surrond the div "Disabled" with <noscript> tag.
Ali Al Omairi(Abu AlHassan)
12-Feb-11 10:52am
View
Dear, I don't know what is wrong with exception. it tills the administrator what wrong with his system. for the client you can cought it and send an appropiate response by using try-catch statment. (I remember that I once was dieing to get one clear exception).
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
9-Feb-11 19:51pm
View
Over my head, Sir.
Ali Al Omairi(Abu AlHassan)
9-Feb-11 19:42pm
View
you know, man. when i was a student i was working hard but in a closed circle being no body helping me. se i found my own way by trying again and again.
this maight be the reason why i beleve that every student has the right to get the help he need. (but in his case you can just cut off head.)
100 :rose: ;)
Ali Al Omairi(Abu AlHassan)
9-Feb-11 18:40pm
View
Sir, be easy with him. he's just a student.
Ali Al Omairi(Abu AlHassan)
9-Feb-11 18:36pm
View
Sorry, I didn't under stand your question but i thing your problem is that your form is getting frozen until the end of 'button1_Click' method.
In this case you should use a callback delegate to modify the property within the same thread.
Ali Al Omairi(Abu AlHassan)
1-Feb-11 18:29pm
View
Sir, give me the code you write in the .aspx.vb/.aspx.cs handling the onclick event.
Ali Al Omairi(Abu AlHassan)
1-Feb-11 18:05pm
View
Thank you, Marcus. As you maight know I am still new to the CP; I don't know much about using its features.
by the way, what is the OP's?
Ali Al Omairi(Abu AlHassan)
27-Jan-11 19:08pm
View
I think this can be done in the traditional way no mater the target system is linux or windows.
Ali Al Omairi(Abu AlHassan)
27-Jan-11 18:07pm
View
thank you for doing this, Alen.
Ali Al Omairi(Abu AlHassan)
25-Jan-11 16:50pm
View
Sir, thank you for advising me. but really i don't understand this portion.
"Do you see that I have the powers to move your comments? "
100 :rose:
Ali Al Omairi(Abu AlHassan)
19-Jan-11 16:48pm
View
thak you sir, i didn't know before. but why do you thing reading a datatable already loaded in memory can be useful.
Ali Al Omairi(Abu AlHassan)
19-Jan-11 13:41pm
View
Sir, this is not of your business. Thank you.
Ali Al Omairi(Abu AlHassan)
16-Jan-11 21:26pm
View
thank you man, but i think my problem was in installation; i shouldnt have cheched "Case Sensitive" Check box.
by the way, Can I change some setting to make it case-insesitive?
Ali Al Omairi(Abu AlHassan)
14-Jan-11 18:27pm
View
thanks for your post, man. I did not think this was possible.
Ali Al Omairi(Abu AlHassan)
1-Jan-11 17:31pm
View
I have seen your Answer but I don't think that it provides a solution for this problem. since the problem statement contained "(for each row)" specifier. thank you.
Ali Al Omairi(Abu AlHassan)
31-Dec-10 19:18pm
View
Deleted
Sir, May I see your form.
Ali Al Omairi(Abu AlHassan)
31-Dec-10 18:57pm
View
Sir, are you trying to handle OnCheckChanged for a checkbox with in a gridview?
Ali Al Omairi(Abu AlHassan)
31-Dec-10 7:16am
View
You are my friend Speaks big talk, to get this you need inherit from DbCommand, DbConnection then DbAdabter
And note that DbAdabter replaced with implement for IDataAdapter.
Ali Al Omairi(Abu AlHassan)
30-Dec-10 19:29pm
View
thanks for your assistance it was very helpful.
Show More