combo selection problem
reena jain posted at 04-Jul-09 09:14
  • In combo of “State” field and I hit “tt” shortcut to select the state of Texas, but when I look at the counties it shows the state of Tennessee.  It needs to show Texas since that is what I was going for. it what does when i press "t" than it move to server for serching the record for 'tennessee' which come before 'taxas' since I press 'tt' to set taxas it set the taxas very well but show the counties for 'tennessee' which is wrong.
  • I've used ajax for that.

Please porvide me help as soon as possible.


 
Reformating Hard Drive
Robert Niehoff posted at 04-Jul-09 08:34
I have a Maxtor DiamondMax 10 Model 6L200PO hard drive (200G).  When I set this up I thought it would be cool to split it into 2 different 100 gig hard drives.  Now I want it back as 1 drive with 200gig.  I have worked for hours trying to find out how to do that.  Can anyone help me?

Thanks


 
how to highlight the anchor tag of datalist
reena jain posted at 04-Jul-09 07:46
This is the code to fill the subcategories at run time according to category. There is a datalist and anchor tag I want
  • When you click on one of the sub-category names like, “Breeder Bucks” then that sub-category name needs to be highlighted like the main link is. It can even be the same color of green.   Just needs to stay highlighted while you are on that sub-category.

<div class="topsublinks">
                        <asp:DataList ID="dtAll" runat="server" RepeatDirection="horizontal"
                          HorizontalAlign="Left" RepeatLayout="Flow" OnItemDataBound="dtAll_ItemDataBound">
                        
                        <ItemTemplate>
                        |
                          <a id="aSubCatAll" runat="server"  class="topsublinks"
                            href='<%# SetUrl(DataBinder.Eval(Container, "DataItem.SubCategoryID").ToString(), DataBinder.Eval(Container, "DataItem.NavigateUrl").ToString().Trim()+"?subcat="+ DataBinder.Eval(Container, "DataItem.SubCategoryName").ToString().Trim().Replace(" ","-"),1) %>'>
                             <%# DataBinder.Eval(Container, "DataItem.SubCategoryName").ToString().Trim() %>
                            </a>
                          
                        </ItemTemplate>
                          
                        </asp:DataList>
                    </div>

thanks in advance


 
Logshipping Configuration
Thayalan K posted at 04-Jul-09 07:15

Dear,

I have a production database(600 GB) that has 5 data files and 2 ldf files. Data files are placed in 5 different drives(D,E,F,G,H) and log Files are placed in two different drives(I,J). I have one stand by server, which has only 3 drives available for the database. Is it possible to configure logshipping between these two servers. if yes, please let me know . Or we should have the same directory structure to configure logshipping? please help me.

 

Regards,

Sathya

 

 

 



 
Treeview in Vb.net windows form
pooja singh posted at 04-Jul-09 04:01

hii... i am using treeview in my project of windows form vb.net..

the tree structure is like that --------

Root (there is a checkbox against all the items)

   Parent1

      child1

      child2

  Parent2

now my question is that if i select root check box then all the checkboxes of parent & child must get select. bt when i deselect the rootcheckbox then vice versa.

so how can i write the code for this..

plz help me, bcoz m very new to treeview....

Thanks in advance.....

Pooja Singh



 
send mail using command line
A_S M posted at 04-Jul-09 03:58
is there any way to send mail using command line?



 
search settings error
AmirHosein SedaghatNejad posted at 04-Jul-09 03:46
Hi all,
When I want to click on SearchSettings on shared services 1, I have an Error:

"The search service is currently offline. Visit the Services on Server page in SharePoint Central Administration to verify whether the service is enabled. This might also be because an indexer move is in progress."


 
Hallticket
Prem Anandh posted at 04-Jul-09 03:21

Hello Sir, I need urgent "Sample Code for Hall Ticket" retrieve data from access database.

How to retrieve image from access database through asp.net

Thanking You



 
Combo box in javascript
new vel posted at 04-Jul-09 02:58

Hi,

How to  bind the value for combobox  form javascript function.?
In that function i am passing Combo id and Value(Which is going to bind).

I used following....

window.opener.document.getElementById(comboID).value=ComboValue;
And

window.opener.document.getElementById(comboID).Selected=ComboValue;

Can any one tell me how to bind the value.?



 
About TreeView Control
Tejaswini Prashant J posted at 04-Jul-09 02:45
I am showing the user visited pages in the treeview control.
The user list is there in Grid. When a particular row of the userGrid will select it's respected visited pages should be shown in the treeview control.
How treeview control can be cleared  at every user selection?

my code ->

DataTable _dt= facade.GetNavigationLog(SessionId);
                       
            int i = 0;
          
            if(_dt.Rows.Count >0)
            {
                tvPageViwer.BeginUpdate();
                foreach (DataRow dr in _dt.Rows)
                {
                     tvPageViwer.Nodes.Add(dr["PageTitle"].ToString());  // Add Prent Node
                     //Add child nodes
                        tvPageViwer.Nodes[i].Nodes.Add("Time    : " + Convert.ToString(dr["Date"]));
                        tvPageViwer.Nodes[i].Nodes.Add("Title    : " + dr["PageTitle"].ToString());
                        tvPageViwer.Nodes[i].Nodes.Add("Url    : " + dr["PageUrl"].ToString());
                        if(dr["Referrer"] != null)
                          tvPageViwer.Nodes[i].Nodes.Add("Referrer   : " + dr["Referrer"].ToString());
                   
                    i++;
                }
                tvPageViwer.EndUpdate();
            }
            tvPageViwer.Refresh();

but this does not clears the treeview control at user selection change.
Can anybody help me ?



 
Windows SharePoint Services Search
AmirHosein SedaghatNejad posted at 04-Jul-09 02:17
Hi all,
I installed WSS 3.0 after MOSS 2007 installig. When I go to services on server I can't see Windows SharePoint Services Search to start it.
What should I do?
I have Office SharePoint Server Search and start it.



 
Text box in data list
Vino Nithiyanantha posted at 04-Jul-09 01:20
I am doing an online essay type examination system. I am using data list for that. It has 8 questions. I am included a text box inside the datalist for answering. But i dont no how to get the value of all answers and put it into the database.

Can some tell me how to get all the answers and write into seperate labels. So that i will have an idea.

Vino


 
hi,all
Dev M posted at 04-Jul-09 01:20
how many type page directives,any one explain with example?

thanks advance


 
Handling combo box and label in javascript
new vel posted at 04-Jul-09 01:06
Hi,

I am having page which is master implemented. In that i am having combobox and label and buttons too. when i click the button the popup window will come. in that i am having grid. I have written the code in onclick of row. it will call the Javascript function gv. Here i am passing ids of that label and checkbox along with the value which is going to display in that label and combobox . I dont know how to bind that value with that controls. I tried the following.

function gv(lblValue,comboBoxValue,lblId,comboBoxId)

{window.opener.document.getElementById(lblId).value = lblValue; //I also tried Text in the place of value

window.opener.document.getElementById(comboBoxId).selected = comboBoxValue;

}

Thanks in Advance




 
Handling Check box and Label in Javascript
new vel posted at 04-Jul-09 01:01

Hi,

I am having page which is master implemented. In that i am having checkbox and label and buttons too.  when i click the button the popup window will  come. in that i am having grid.  I have written the code in onclick of row. it will call the Javascript function gv. Here i am passing ids of that label and checkbox along with the value which is going to display in that label and checkbox.  I dont know how to bind that value with that controls. I tried the following.

function gv(lblValue,cheBoxValue,lblId,cheBoxId)

{window.opener.document.getElementById(lblId).value = lblValue; //I also tried Text in the place of value

window.opener.document.getElementById(cheBoxId).selected = cheBoxValue;

 }

Thanks in Advance



 
add radgrid datarows to Arraylist
pushpa ponugoti posted at 03-Jul-09 11:35

Hi,

I have radgrid with some editable coulmns after editing rows on grid when I submit the grid information should be added to Arraylist when I add each row to Arraylist it is overwriting previous rows in the ArrayList

Any help is appreciated

 



 
javascript + codeBehin (ie 6+)
D Money posted at 03-Jul-09 04:05

Hi,
I received a code of a page, which works like this: if I am entering text in an asp:TextBox and press "Intro" in the code is executed

codeBehin. This is done by handlin the OnTextChanged event with a codeBehin function

All good till here, the problem is the following ...

Now, what I need, is not only run the code of the codeBehin, but also call a javascript function, both while I hit "Intro" on the

asp:TextBox.

I tried to associate the javascript code to the onchange event, but this does not work. The javascript code does not run and the codebehin

runs perfectly.

A solution that occurred to me, but I have no idea whether it is feasible, is to add javascript code to the event OnTextChanged eg

OnTextChanged = "javascript:alert('a');txtCalle_TextChanged" but this does not work.

This is the code for the TextBox control (nothing from the other world):
<asp:TextBox ID="txtCalle" runat="server" Width="327px" OnTextChanged="txtCalle_TextChanged" MaxLength="50"> </ asp: TextBox>


Turning clean, the idea is to be able to execute javascript code and codebehin when I hit "Enter" in a TextBox.

I listen to suggestions,

thanks!


 
Importing Spreadsheet but keep table column names
carl toomey posted at 03-Jul-09 11:51

Hi. I am trying to set up a DB whereby an emailed spreadsheet is imported into an existing table in Access. The problem is that the excel spreadsheet contains two columns with no name, and two columns with the same name. So, when trying the transferspreadsheet command into the existing table, it does not like it.

I have tried saying "no" to has field names, but it doesn't like that either (field F1 not found). Ideally, the original spreadsheet should not be amended, but it won't let me import it at the minute. Is there anyway to import it saying that it does contain field names, but these names should not be used? Would be amazing help if so.

If not, any suggested work arounds without touching the original spreadsheet? I apologise for difficulty, would be v grateful for help.

Thanks,

Carl



 
How to add the web service to my WebSite in Sharepoint
MySpider DotNet posted at 03-Jul-09 10:50

Hi,

    I created a Asp.NET Web Service which return the Xml value fetching from SQL Databse. i want that web service to my Sharepoint Site. I dont know how to add it. Can anyone explain me....?



 
Restore blocked
peppo sub posted at 03-Jul-09 10:48
Hi all

I have a serious problem with a farm of a customer.
The customer requested to restore an SSP from production enviroment to test enviroment. In test enviroment an identical SSP was already present. Customer requested to overwrite it.
Using the GUI I started a restore job, using the backup of the night done with a scheduled stsadm script that save all the SSP of the farm. The restore run for a while, at a certain point it gave this error:

Object SSP_NAME failed in event OnRestore. For more information, see the error log located in the backup directory. TimeoutException: Timed out waiting for Shared Services provisioning jobs to pause.

after it the restore seem to be freezed up.
I deleted the job in the timer job defition, tryed to restard some services on the machines, like Windows SharePoint Services Search and Windows SharePoint Services Administration.
Anyway when I go in backup and restore status, the job is alaways there.

I succeded to delete the SSP that the job created, that was in unproviding status, but it's all.

Someone could suggest a workaround for this problem?

Farm is 2007 SP1 and is composed by two frontend, one index and one sql 2005 server. Al servers are w2k3 64bit


  

Search

search




Purchase