|
Hi Josh
When I try this, an then click on a button that is in the user control the control disappear... How can I get the user control to appear again (I have to get the user control from it self)
|
|
|
|
|
i have menu control which contains three root nodes
admin
--page1
--page2
--page3
transaction
--page4
--page5
--page6
reports
--page7
--page8
--page9
i want to use the sitemappath control
but in the site map path , i can add one root node thus it creates one root node only.How should i avoid this problem.
I mean when i click the page 4 , then the sitemap should show
Home > Transaction > page4
But xml file does not allow more then one root node.
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
|
|
|
|
|
You need to add a root node named "Home". Then it will show Home > Transaction > page4 if you are in page4
|
|
|
|
|
very right approach..
cheers !
Ashish Sehajpal
|
|
|
|
|
Thanks
|
|
|
|
|
Dear Friends,
I want information about ASP.Net page, when any ASP page created the control on each page should have any unique identity so i can use that id, i found the unique number and id of control Text Box but i found it not unique because every time i check the number randomely it give me new number i think its browser specific (code given below)
mshtml.IHTMLUniqueName uInputName = (mshtml.IHTMLUniqueName)MyContorl.DomElement;<br />
messageBox.show(uInputName.uniqueID);<br />
messageBox.show(uInputName.uniqueNumber.ToString());
is there any other uniquness in control, or my assumption is wrong.
Please clear me thanks in advance.
Sasmi
|
|
|
|
|
Hai all,
I have to develope one resume filtering application.I have resume is there in one of my folder.i just want to filter the resume acording to the content of that resume.For example in my search feild i give the phone number "234567" i want to retrieve all resumes which contain this phone number.I dont have any idea abt this.Can anyone give me some idea how to do it?
Thanks in advance.
With Regards
Lijo
|
|
|
|
|
If you have no idea why have you been giving the task?
Where are the resumes? in a database?
I think you need to give us more information or at least search google and then once youve got some where post again
|
|
|
|
|
Resume is not in database. It is in one folder.by using stream writer i will write it to one word pad which is in that folder.by using stream reader i can read that also.
but according to the content of resume i need to filter it...
|
|
|
|
|
To search a text with in a text i think you have to read all the text from file in memory and than use the string function to find the substring with in the string.
|
|
|
|
|
Lijo Rajan wrote: I have to develope
Lijo Rajan wrote: I dont have any idea
This is why outsourcing sucks.
You can control Word through the tools for Office. You cannot just read a word file as a stream, unless it's the new file format, then it's a zip, full of XML, you can probably search that with a bit of work.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
how should i invoke the mail message window (new message window) of outlook express in asp.net
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
|
|
|
|
|
Well, did you try google ? You can't explicitly launch outlook express, you can only use a mailto: link to open the default mail program.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
how should i write the code to invoke only the new message window .
as u said to use mailto , how should i use it?
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
|
|
|
|
|
Check this:
http://www.getfreesofts.com/script/743/1042/Sending_Emails_Through_Outlook_using_C_and_VBNET.html
http://help.lockergnome.com/office/Microsoft-Outlook-Email-ASP-NET-application-ftopict940246.html
|
|
|
|
|
THANK You
Do u know a link pertaining to the utlility of SitemapPath control along with menu control?
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
|
|
|
|
|
So sad that you still don't know how to use google after all this time. Have you read the article linked to in my sig ?
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Hello, the below code is working fine for localhost means htt//localhost/name1,aspx.
Its opening popup well
but same when we deployed in test server then its opening popup and automatically closing
eg: http://192.45.23.233//name1.apsx
In this case popup is opening and automatically closing.
//////////
string ActivityPath1 = State.AppRoot + "Administration/ExcelPage.aspx?sheet=Activity";
string scriptActivity = "var windowRef = window.open('" + ActivityPath1 + "','Activity','status=yes, resizable= yes, scrollbars= yes, toolbar= yes,menubar= yes');";
scriptActivity += "windowRef.focus();";
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "Activity", scriptActivity, true);
///////////////
|
|
|
|
|
this seems a strange way to open a pop-up, maybe try something like this(the syntax isnt correct but you get the idea!), put it in the c# code
"javascript:var popup = window.open('Page.aspx', 'Popup', 'toolbar=no');
|
|
|
|
|
the same code is working in localsystem,Its opening pop-up,after deployed in server with serverAdress if u open then pop-up is opening and closing
automatically
|
|
|
|
|
Well maybe use google and investigate what potential problems a server could put on opening a new window, it could be a configuration in your server or a slight change to your code, I've never encountered this problem before but I bet google has!
|
|
|
|
|
Verify if javascript is enabled on your server. This seems to be a problem due to it or there may be a popup blocker installed on server.
|
|
|
|
|
check for popup blocker at server...
use a pure HTML pge with only a single button...code javascript to open popup window onclick event of that button...(BUTTON IS IN HTML....i.e INPUT TYPE=BUTTON)
check whether it is working...
Ashish Sehajpal
|
|
|
|
|
Hi All,
I am using C# asp.net 2.0 and ajax1.0.
I am trying to fill dropdownlist using ajax cascading toolkit but I am not able to populate the dropdownlist.
My question is how do I take input value of parent dropdownlist in web service the fill the data that is in my senario I have subprod parent (fill on page load) and then
Prod fill on subprod selection.
The web service method I used is
public CascadingDropDownNameValue[] GetProd(string knownCategoryValues, string category)<br />
{<br />
<br />
StringDictionary kv = CascadingDropDown.ParseKnownCategoryValuesString(knownCategoryValues);<br />
string subgrp = null ;<br />
if (!kv.ContainsKey("PGM_GRP_CODE") )<br />
{<br />
return null;<br />
}<br />
<br />
DsprdTableAdapters.SPGETPRODUCT_GIVENSUBTableAdapter prd = new DsprdTableAdapters.SPGETPRODUCT_GIVENSUBTableAdapter();<br />
Dsprd.SPGETPRODUCT_GIVENSUBDataTable prdgrp = prd.GetProd(subgrp);<br />
List<CascadingDropDownNameValue> values = new List<CascadingDropDownNameValue>();<br />
foreach (DataRow dr in prdgrp)<br />
{<br />
values.Add(new CascadingDropDownNameValue((string)dr["PM_PRD_NAME"], dr["PM_PRD_CODE"].ToString()));<br />
}<br />
return values.ToArray();<br />
<br />
<br />
}<br />
<br />
and <br />
cascading toolkit I definded as <br />
<br />
<ajaxToolkit:CascadingDropDown ID="cddPROD" <br />
runat="server" <br />
TargetControlID="Ddlproduct" <br />
ParentControlID="Ddlsubdiv" <br />
Category="Prod" <br />
PromptText="Choose a Product...." <br />
LoadingText="Please wait ..." <br />
ServicePath="../Prod.asmx" <br />
ServiceMethod="GetProd" /> <br />
<br />
Pleases Suggest
regards
imran khan
|
|
|
|
|
I have one link button and 8 image buttons in my page. First time when the page is loaded, the link button is not appearing as a link. It looks like normal text. When I click on one of the Image Buttons the page will refresh and now onwards Link Button will appear as a link. Anyone have an idea?
|
|
|
|