Unable to get CommandAgrument value for the Edit Button in Gridview Control, Mean while it works for the Delete Button

I want to show Edit/Delete Button using Ajax's HoverMenuExtender Control , But I also want to show edited record using ModalPopup Extender Control of AjaxCotrolltoolkit , for this I have used below code
<asp:GridView ID="GridMainCat" runat="server" Width="100%" AutoGenerateColumns="false" DataKeyNames="CATID" OnRowDataBound="GridMainCat_RowDataBound" OnRowCommand="GridMainCat_RowCommand" OnPageIndexChanging="GridMainCat_PageIndexChanging" OnSelectedIndexChanging="GridMainCat_SelectedIndexChanging" AllowPaging="true" PageSize="10">
<Columns>
<asp:TemplateField>
<HeaderTemplate>
<table width="100%" border="1" style="color: blue;">
<tr>
<td width="20%">Catg Id</td>
<td width="20%">Catg Name</td>
<td width="25%">Catg Desc</td>
<td width="35%">Catg Image</td>
<%-- <td width="20%">Created Date</td>--%>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<asp:Panel ID="panel2" runat="server">
<table width="100%">
<tr>
<td width="20%"><%#Eval("CATID") %></td>
<td width="20%"><%#Eval("CATNAME") %></td>
<td width="25%"><%#Eval("CATDESC") %></td>
<td width="35%"><%#Eval("CATIMAGE") %></td>
<%-- <td width="20%"><%#Eval("CREATEDADTE") %></td>--%>
</tr>
</table>
</asp:Panel>
<!-----Panel for displaying the edit and delete options in GridView------>
<asp:Panel ID="panel1" CssClass="HoverMenu"
runat="server" Height="50" Width="50"
HorizontalAlign="Left">
<div>
<asp:LinkButton Style="padding: 4px;" ID="lnkDel"
CommandName="Dlt" runat="server" CausesValidation="false" Text="Delete" CommandArgument='<%#Bind("CATID") %>' OnClientClick="javascript:return('Are you sure, do you want to delete Record??')">
</asp:LinkButton><br />
<asp:LinkButton ID="lnkEdit" runat="server" Text="Edit" CausesValidation="false" CommandName="Edt" CommandArgument='<%#Bind("CATID") %>' style="padding: 4px;" ></asp:LinkButton>
</div>
</asp:Panel>
<asp:HoverMenuExtender ID="HoverMenuExtender1" runat="server" TargetControlID="panel2" PopupControlID="panel1" PopupPosition="Left" HoverCssClass="Hover"></asp:HoverMenuExtender>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
To Show ModalPopup I have used following aspx Code:-
<asp:Button ID="btnShowPopup" runat="server" Style="display: none" CausesValidation="false" />
<asp:ModalPopupExtender ID="ModalPopupExtender1" runat="server" TargetControlID="btnShowPopup" PopupControlID="PanelEditMainCategory" CancelControlID="btnUpdate" BackgroundCssClass="modalBackground"></asp:ModalPopupExtender>
<asp:Panel ID="PanelEditMainCategory" runat="server" CssClass="modalPopup" Style="display: none;">
<table style="border-width: 3px; border-color: lightseagreen;" border="1" align="center" height="300px">
<tr>
<th>
<table>
<tr>
<th align="left">Category Id:</th>
</tr>
<tr>
<th align="left">Category Name:</th>
</tr>
<tr>
<th align="left">Category Description:</th>
</tr>
<tr>
<th align="left">Category Image:</th>
</tr>
</table>
</th>
<td>
<table>
<tr>
<td align="left">
<asp:TextBox ID="txtCatID" Text='<%#Eval("CATID") %>' runat="server" Enabled="false"></asp:TextBox>
</td>
</tr>
<tr>
<td align="left">
<asp:TextBox ID="txtCatName" Text='<%#Eval("CATNAME") %>' runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td align="left">
<asp:TextBox ID="txtCatDesc" runat="server" Text='<%#Eval("CATDESC") %>' TextMode="MultiLine"></asp:TextBox>
</td>
</tr>
<tr>
<td align="left">
<asp:TextBox ID="txtCatImage" runat="server" Text='<%#Eval("CATIMAGE") %>'></asp:TextBox>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<th align="left" colspan="2">
<asp:Button ID="btnUpdate" Text="Update" CausesValidation="false" runat="server" OnClick="btnUpdate_Click" />&nbsp;
<asp:Button ID="btnCancel" Text="Cancel" CausesValidation="false" runat="server" OnClick="btnCancel_Click" />
</th>
</tr>
<tr>
<th align="left"></th>
<td align="left"></td>
</tr>
</table>
</asp:Panel>
Here is my .CS code :-
protected void GridMainCat_RowCommand(object sender, GridViewCommandEventArgs e)
catID = e.CommandArgument.ToString();
if (e.CommandName == "Edt" && e.CommandArgument != null)
ModalPopupExtender1.Show();
Bind_Edit_MainCategory(catID);
if (e.CommandName == "Dlt")
Bind_Delete_MainCategory(catID);
private void Bind_Grid_MainCategory()
using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString))
using (SqlCommand cmd = new SqlCommand("USP_FETCH_MAINCATEGORY", cn))
try
cmd.CommandType = CommandType.StoredProcedure;
dt = new DataTable();
da = new SqlDataAdapter(cmd);
da.Fill(dt);
GridMainCat.DataSource = dt;
GridMainCat.DataBind();
catch (Exception ex)
throw ex;
private void Bind_Delete_MainCategory(string catId)
using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString))
using (SqlCommand cmd = new SqlCommand("USP_DELETE_MAINCATEGORY", cn))
try
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@CATID", catId);
cn.Open();
cmd.ExecuteNonQuery();
Bind_Grid_MainCategory();
catch (Exception ex)
throw ex;
private void Bind_Edit_MainCategory(string catid)
using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString))
using (SqlCommand cmd = new SqlCommand("USP_EDIT_MAINCATEGORY", cn))
try
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@CATID", catid);
cn.Open();
SqlDataReader dr = cmd.ExecuteReader();
if (dr.Read())
txtCatID.Text = dr["CATID"].ToString();
txtCatName.Text = dr["CATNAME"].ToString();
txtCatDesc.Text = dr["CATDESC"].ToString();
txtCatImage.Text = dr["CATIMAGE"].ToString();
//modalPopupExtender1.Show();
ModalPopupExtender1.Show();
Bind_Grid_MainCategory();
catch (Exception ex)
throw ex;
it works fine for HoverMenu Extender, and for the delete button as well. When I click on Delete Button It finds CommandArgument value But as I click on Edit Button It does not find CommandArguement value. Kindly help me to fix this problem

Do you mean it's firing when you click Edit?. I've replicated your code as below and it worked, try to remove the OnRowCommand run a build and then add the it again:
protected void Page_Load(object sender, EventArgs e)
BindGridwithDummy();
protected void GridMainCat_RowCommand(object sender, GridViewCommandEventArgs e)
string catID = e.CommandArgument.ToString();
if (e.CommandName == "Edt" && e.CommandArgument != null)
if (e.CommandName == "Dlt")
private void BindGridwithDummy()
DataTable dt = new DataTable();
DataRow dr;
dt.Columns.Add(new System.Data.DataColumn("Test", typeof(String)));
dr = dt.NewRow();
dr[0] = "A dummy Data"; //Adds the Dummy Data in the Row
dt.Rows.Add(dr);
// Show the DataTable values in the GridView
GridView1.DataSource = dt;
GridView1.DataBind();
<asp:GridView ID="GridView1" runat="server" OnRowCommand="GridMainCat_RowCommand">
<Columns>
<asp:BoundField DataField="Test" />
<asp:TemplateField>
<HeaderTemplate>
Button</HeaderTemplate>
<ItemTemplate>
<asp:LinkButton Style="padding: 4px;" ID="lnkDel" CommandName="Dlt" runat="server"
CausesValidation="false" Text="Delete" CommandArgument="1" OnClientClick="javascript:return('Are you sure, do you want to delete Record??')"></asp:LinkButton><br />
<asp:LinkButton ID="lnkEdit" runat="server" Text="Edit" CausesValidation="false"
CommandName="Edt" CommandArgument="2" Style="padding: 4px;"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>

Similar Messages

  • PerformancePoint in SharePoint 2010 - Unable to get filter values from... Error 10828

    I currently am using PPT to expose data from a Microsoft Analysis Server cube. The cube is wide open and requires no permissions to access.
    The behavior of my filters is odd as sometimes they work perfectly fine, and other times I receive the following error upon report run:
    Unable to get filter values.
    An unexpected error occurred. Error 10828. Additional details have been logged for your administrator.
    I have looked at the ULS logs and found the following:
    An unexpected error occurred.  Error 10828.  Exception details: System.NullReferenceException: Object reference not set to an instance of an object.    
     at Microsoft.PerformancePoint.Scorecards.Server.PmServer.QueryTimeIntelligenceInternal(DataSource dataSource, DateTime currentTime, String formula)    
     at Microsoft.PerformancePoint.Scorecards.Server.PmServer.QueryTimeIntelligence(RepositoryLocation dataSourceLocation, DateTime currentTime, String formula)
    An exception occurred while rendering a Web control. The following diagnostic information might help to determine the cause of this problem:  Microsoft.PerformancePoint.Scorecards.BpmException: Unable to get filter values.  PerformancePoint Services
    error code 20700.
    This is odd to me, as I can trick the report to run by changing the date filters to another day, then back to the original days that error'ed out and everything is fine. Some guidance would be appreciated.

    Hi,
    Do you mean that you have Office 2007 and Office 2010 both installed in you computer?
    Based on my test, I copy a Access 2010 database into a computer only installed Offic 2007, then using Excel 2007 to import Access database data, no error occurred.
    So double click the Access database to see whether the databased is opened with Access 2007 or Access 2010. If it is opened with Access 2010, then try to save it as Access 2007 to
    check the issue.
    Jaynet Zhang
    TechNet Community Support

  • TS3988 I changed my Apple ID to my new email address successfully for the iTunes and App store but it won't work for iCloud and it won't recognize my password. I read that this can't be done. How am I supposed to get into iCloud?

    I changed my Apple ID to my new email address successfully for the iTunes and App store but it won't work for iCloud and it won't recognize my password. I read that this can't be done. How am I supposed to get into iCloud? I plan on getting rid of my old email address which is my old Apple ID so how is that going to work?

    Same question Wish someone had replied!
    I changed my Apple ID to my new email and now cannot find any way to access icloud. Unfortunately I had allowed icloud to hijack my airbook files, so of course I am afraid I will lose them tomorrow when I exchange my iphone for a new one and cannot keep an icloud account i cannot access. What a poor sync system! Really atypical for apple!

  • I have set up photoshop elements as external editor in iPhoto but I cannot get the edited photo to open in iPhoto. When I save the photo Elements asks where do I want to save it and iPhoto is not an option.

    I have set up Photoshop Elements11 as the External Editor in iPhoto just as Terence Devlin said. However when I save the edited photo it does not appear in iPhoto. A drop down menu asks where I want to save the photo and I do not know what to choose. Also should I choose, "save" or "save as"? I should be really grateful for your help.

    I suggest opening iPhoto and reverting back to iPhoto in the Preferences for photo editing. Quit iPhoto. Restart your Mac for good measure. Open iPhoto and again choose Photoshop Elements in Preferences as the editing app.
    As far as editing, I don't have PE, but I have another editing app form the Mac App Store, ColorStrokes. I have been experimenting with using it for editing iPhoto photos and it works flawlessly. After setting ColorStroke as the editing app, I open a photo in iPhoto and click the Edit button in the menu bar below the photo. Color Stoke immediately opens with the photo and I complete my editing. When I have finished editing I choose to Save the photo, leave the name the same and agree to replace the iPhoto photo of the same name. I quit ColorStroke and the photo in iPhoto now has all of my edits from ColorStroke.
    Should I decide that I prefer the original photo, I open the photo in iPhoto and choose Revert to Original in the Photos pulldown menu.

  • What are the main steps to be taken care while doing recording for LSMW

    Hi,
    I am facing problem in LSMW.
    Can anybody suggest me that What are the main steps to be taken care while doing recording for LSMW for recording mm01 ?
    thanks'
    naresh

    Hi,
    Recording in LSMW is similar as SHDB.
    in LSMW after you give Project-Subproject and Object.
    1)Go to-> Maintain Object Attributes -> double click
    2)Press Display/Change Button at top left to make editable mode.
    3)Select radiobuton -> Batch Input -> Give Recording name say Z_mm01
    4) Click the Recording Overview boton on right -> Give TCode which u want to record....
    Rest refer the Document link attached.
    Please find the links to various threads on the same.
    Re: LSMW - Using a BAPI
    BAPI, IDOC in LSMW
    Upload the data in LSMW using BAPI
    This one is the most complete document for the same
    http://sapabap.iespana.es/sapabap/manuales/pdf/lsmw.pdf
    http://service.sap.com/lsmw.
    Regards
    Kiran

  • The editing "Guided" mode of Photoshop Elements 11 not works!

    Using the editing "Guided" mode of Photoshop Elements 11 the working progress line hangs at 75% and Guided mode not works  ! The "Quick" and "Expert" mode, instead, working well.
    Attention, please! I specify that I use Mac OS X Lion 10.7.5  and I don't have AntiVirus or Firewall actived... I have already tried to delete all Preferences, all Elements 11 cache folders, etc., tried to uninstall and re-install the Software... but without success. I hope that you can help me.

    About the editing Guided mode of Photoshop Elements not working.
    My FINAL solution to the problem. (But I hope also for an Adobe intelligent patch...)
    I finally understand why the the "Welcome screen..." and the IMPORTANT editing "Guided" did not work in Photoshop Elements 11 (or with Photoshop Elements 10); the "Guided" panel does not appear with the options but, on the right, the progress bar hangs at 75% of the options panel and the panel remains empty.
    After days of hard work and after many attempts on the Adobe Troubleshooting, I realized that the problem depends by Mac OS X anti-malware functions  (XProtect process). But I have not figured out why the issue did not showed running PSE into a new account; maybe, it is because Mac OS X still not intercepted always and blocked the old Flash Player plug-in, installed by PSE11. Examining System Preferences and Security Panel -> Advanced, you see the option that enables automatic control by Mac OS X for the Malware black-list.
    As may be seen in the attached screeshot, if you open with XCode or with a text editor the file "/System/Library/CoreServices/CoreTypes.bundle/ Contents/Resources/XProtect.meta.plist" you can read that Mac OS X (from 10.6 Snow Leopard) inserted the old versions of Flash Player plug-in (minor of "11.3.300.271") into the black list plug-ins, to block they.
    I do not understand why Adobe has left this obsolete "Flash Player.bundled" plug-in in Photoshop Elements 11 or 10! PSE11, in fact, does not use the "Flash Player.bundle" plug-in but it uses "AdobeSWFL.bundle", contained into "System_Disk/Library/Application Support/Adobe/APE/3.101/adbeapecore.framework/Versions/A/Resources/". Does maybe Adobe ignores, perhaps, the existence of a BlackList in Mac OS X that blocks the Flash Player plug-in prior to version 11.3.300.271? ... Is that really useful to install this obsolete Plug-In (for Mac OS X 10.4 - 10.5) if PSE11 works from version 10.6 "Snow Leopard" onwards?
    The Flash Player plug-in installed by PSE11 is the old version "10.1.82.73" as you can read in it info.plist file (or in my screenshot attached here) and I think that if you use Mac OS X Lion or Mountain Lion you can delete it because, as we read in his file "Info.plist", the plug-in is only for Mac OS X 10.4 or 10.5 ...
    An hypothesis about the occasional occur of issue about "Guided" mode or "Welcome screen" not working is that PSE11, at start-up, makes a "program's call" to the old "Flash Player" plug-in installed by PSE11 and PSE10 and the system, peraphs, intercept this call through "xprotect" process that runs in the background; so, Mac OS X blocks the function of PSE11 based on Flash Player as, indeed, the "Welcome screen" and the editing function "Guided".
    Or the problem lies in a behavior of PSE at startup that it due to old ACL permissions existing into Home's folders (because belong the previous Mac OS X 10.5 - 10.6 version). PSE thinks of having to boot the old Flash Player plug-in containded in APE. This would explain why PSE runs well and "Guided "PSE mode works if start-up creating a new account!
    Note! Utility Disc does not correct, by default, the ACL permission in Home!!! Adobe, then, rather than suggesting to create new accounts ... must correct PSE by removing any reference to the old Flash Player plug-in. Otherwise, there is always the risk that Mac OS X prevents proper operation.
    I tried to rename it or remove this plug-in and PSE11 always work well, but for pedantry, I preferred this solution:
    - I installed the latest version of Flash Player from the Adobe site.
    - I opened the package to "/ Library / Internet \ Plug-Ins/Flash \ Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents /"
    - I copied the four objects (Folder MacOS and Resources folder and files: info.plist and version.plist)
    and
    glued them in "Adobe/APE/3.101/adbeapecore.framework/Versions/A/Resources/Flash Player.plugin / Contents /" overwriting existing ones.
    I have one more doubt left: I have not yet enabled the iCloud option for the Photo Streaming and the iTunes Match sync; this functionalities was enabled in my old account when PSE did not working.. I hope that PSE11 will work well even when I will enable these features to sync with my Apple accounts...
    See the Mac OS X Plug-In Black List
    Message was edited by: Dottor Vincenzo 2012/12/07 - 9:38:00

  • Does the autosave and versions features in OS X Lion work for Microsoft Office or just for iWork?

    Will the new OS X Lion autosave and versions feature work for Microsoft Office (e.g. Word, Excel, Powerpoint) or does it just work for iWork?

    M…oSoft didn't embed the Lion's new feature in its applications.
    So, the truth is that M…oSoft products are unable to use them.
    Yvan KOENIG (VALLAURIS, France) mercredi 4 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • I want the cursor to be in the address bar when creating a new window; it works for new tabs and in a new private window, but not in safe mode.

    I have tried following the advice offered in the few different threads I have found on this but nothing fixes it. I want the cursor to be in the address bar when I open a new window and/or when firefox opens without restoring a previous session. I fixed the issue for new tabs via about:config but this doesn't work for new windows. I tried safe mode and the problem persists. In new private windows the cursor is in the address bar.

    The search box in about:home steals the cursor. Changing your home page to something else will cause the cursor to start in the address bar for new windows.

  • Hello, can anyone tell me how to share my home macbook pro to my imac in the office? I tried file sharing but never worked for me...appreciate if anyone can help!

    Hello, can anyone tell me how to share my home macbook pro to my imac in the office? I tried file sharing but never worked for me...appreciate if anyone can help!

    I should have added to my posting (instead of using this "reply" -  it is the server passwork it is asking for and I have never known that I had one and assumed it was the passwork I always used for this type of thing.

  • I have an apple iphone4 im facing the problem that my phone senser is not working when i rotate the phone in videos or music play there is working from the senser can u tell me what can i do for this....

    i have an apple iphone4 im facing the problem that my phone senser is not working when i rotate the phone in videos or music play there is working from the senser can u tell me what can i do for this....

    If you double tap the home button, and then swipe your finger to the right, make sure you DO NOT have the Lock Orientation button enabled.
    You know it is disabled if there is no padlock in the middle of the icon.

  • Hello to you in the company Apple. I am having a problem in the Apple Store ID does not allow me to work on the Apple Store I hope that you will help. You have sent you yesterday and today I want to call the phone number for Mei you and explain to you why

    Hello to you in the company Apple. I am having a problem in the Apple Store ID does not allow me to work on the Apple Store I hope that you will help. You have sent you yesterday and today I want to call the phone number for Mei you and explain to you why with many thanks

    Sorry, but you can't reach Apple here. This is a user to user forum and Apple does not follow these discussions.
    Try this link to contact Apple directly:
    Apple - Support - iPhone - Contact Support
    Did you already have a look at this page?
    App Store Frequently Asked Questions (FAQ)

  • I just purchased the Apple MB974ZM/B World Travel Adapter Kit for my iphone 5. It says it works for the 4.  Does anyone know if this will work for my iphone 5?

    I just purchased the Apple MB974ZM/B World Travel Adapter Kit for my iphone 5. It says it works for the 4.  Does anyone know if this will work for my iphone 5?

    here is the link to Apples compatibility guide for it.
    http://store.apple.com/us/product/MB974ZM/B/apple-world-travel-adapter-kit

  • [svn:bz-trunk] 20680: Tomcat 7 Login Module work, due to the Tomcat 7 Security framework change we need to work out the security integration piece for tomcat 7 .

    Revision: 20680
    Revision: 20680
    Author:   [email protected]
    Date:     2011-03-08 08:23:30 -0800 (Tue, 08 Mar 2011)
    Log Message:
    Tomcat 7 Login Module work, due to the Tomcat 7 Security framework change we need to work out the security integration piece for tomcat 7. So far the ValveBase and tomcat Realm had API changes which will impact on the Login integration with Tomcat 7
    Modified Paths:
        blazeds/trunk/modules/opt/build.xml
    Added Paths:
        blazeds/trunk/modules/opt/lib/catalina-708.jar
        blazeds/trunk/modules/opt/src/tomcat/flex/messaging/security/TomcatValve708.java

    Revision: 20680
    Revision: 20680
    Author:   [email protected]
    Date:     2011-03-08 08:23:30 -0800 (Tue, 08 Mar 2011)
    Log Message:
    Tomcat 7 Login Module work, due to the Tomcat 7 Security framework change we need to work out the security integration piece for tomcat 7. So far the ValveBase and tomcat Realm had API changes which will impact on the Login integration with Tomcat 7
    Modified Paths:
        blazeds/trunk/modules/opt/build.xml
    Added Paths:
        blazeds/trunk/modules/opt/lib/catalina-708.jar
        blazeds/trunk/modules/opt/src/tomcat/flex/messaging/security/TomcatValve708.java

  • HT1176 My airport TM will not backup and i keep getting the error msg "Time Machine couldn't complete the backup...An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."

    My Airport TM will not backup and i keep getting the error msg "Time Machine couldn’t complete the backup...An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."

    My Airport TM will not backup and i keep getting the error msg "Time Machine couldn’t complete the backup...An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."

  • Hi there I have updated to your lates version but every time I open up the browser and new windows I get this error message 'TypeError: Components.classes[cid] is undefined' although it does work but the message is very annoying

    Question
    Hi there I have updated to your lates version but every time I open up the browser and new windows I get this error message 'TypeError: Components.classes[cid] is undefined' although it does work but the message is very annoying

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Is OSX server right for me?

    i work for a small dvd authoring house and I am trying to improve the efficiency of our workflow. We are mostly PC based, with a few powermac G5s. I have set up one of the powermacs as a central storage server. It is connected to a 2 terrabyte raid a

  • Static IP clients stuck on dhcp_reqd after upgrade to LAP

    I have wireless thermal printers that have static IP addresses. They are on an open wlan and the dhcp required box is not checked. The client gets hung at DHCP_REQD even though the client has a static address. Controllers are standalone wlc4402(x2) r

  • Increased number of journal receivers after upgrade from ECC 5.0 to 6.0

    After are upgrade from ECC 5.0 to ECC 6.0 on an iSeries machine we have noticed an increase in the number journal receivers being created by SAP approximately twice as many that were being created on are 5.0 system. I've checked all the attributes fo

  • HT3819 Must the iTunes App on my PC always be open to hear music through Home Sharing via WiFi on an iPad?

    OK, we have successfully set up Home Sharing using a common Apple ID.  However, when I close ITunes on my PC my wife can finish listening to the song that has been playing but can't access any more even though they are listed on her iPad. This is not

  • Slower speed after engineer visit

    After losing my broadband connection last week an overreach engineer came out today and found that an ant infestation further down the road had disconnected the cables! My connection speed is now only 1mbs when previously it was 4.5. Should I expect