15,991,453 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 cscManoj22 (Top 14 by date)
cscManoj22
19-Apr-13 5:15am
View
if i added to iframe also it is showing access denied error because both parent and child are different domains how to over come this domain issue?
cscManoj22
19-Apr-13 3:07am
View
no it is not working any other possible way to access it
cscManoj22
19-Apr-13 1:50am
View
it is an third party window for security purposes thy are giving username and pwd to fill child window page and submit in child window
cscManoj22
20-Mar-13 8:51am
View
just to view the image in programatic
cscManoj22
20-Mar-13 7:23am
View
can u assist little bit how to start
cscManoj22
20-Mar-13 3:50am
View
is a WinFax Document. WinFax is a Windows-based software product designed to let computers equipped with fax-modems to communicate directly to stand-alone fax machines.
cscManoj22
20-Mar-13 3:48am
View
can we do any coding without using software in .net to convert or view the file
cscManoj22
12-Feb-13 11:11am
View
ys absolutely 3rd one i just explained three steps of how excel is going to exported
cscManoj22
12-Feb-13 10:49am
View
hi it is an internal site so integrity will not lost
can i have a solution please
cscManoj22
12-Feb-13 10:48am
View
thnks for u r great support sandeep i am very much impressed with u r quickanswers
but the above solution doesn't work
cscManoj22
11-Feb-13 9:21am
View
hi it is happening in application only we have one search screen and use will some search the data and result will be populated to datagrid from there we introduce one option to export excel from there he will update some data and get back to database
cscManoj22
11-Feb-13 9:11am
View
hi can i have some sample code unable to achieve the above process
cscManoj22
6-Feb-13 5:27am
View
Deleted
thanks i will try and get back to u
cscManoj22
5-Feb-13 23:58pm
View
above solution is not correct since it is happening only for dropdown not for dropdownlistitems
my req is when user select dropdownlist there will be a bunch of items populated
normally when we do mouseover on items the backcolor of the item changes to blue
hi i want to fill textbox value (not label-sry for mentioning label)
here is the code i am trying to do on mouseover
function ddnMouseOver(){
var StrPath="LookupXML.aspx?Caller=SubAccount;
var LookUpPath = ArrStrLocation[0] + "/" + ArrStrLocation[1] + "/" + ArrStrLocation[2] + "/" + ArrStrLocation[3] + "/" + StrPath;
SubAccountRequest = CreateRequest();
SubAccountRequest.onreadystatechange = ApplyOnsiteWarrantyHandler;
SubAccountRequest.open('POST', LookUpPath, true);
SubAccountRequest.send(null);
req.onreadystatechange = function()
{
window.status="Done";
dom = req.responseXML;
if (!IsHasErrorTable(dom))
{
var dr=new TableReader(dom, "dtPCase");
while(dr.MoveNext())
{
document.getElementById("Textbox1").value=dr.Column('BranchAccountLevel');
}
}
}
}
Show More