Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by someTimeOnly

  1. someTimeOnly

    Validation control problem

    Sorry everyone for the mess I spread up there. Actually, the problem I was facing, was that I was not aware that every control(almost) has a property CausesValidation, that is true bydefault. So every control with CausesValidation property true, will cause validatation, and thus no need to use...
  2. someTimeOnly

    Validation control problem

    ok i was missing private void button_Click(object sender, EventArgs e) { if(Page.IsValid) { Response.Redirect("somepage.aspx",false); } } But how to make validation be performed at client side.
  3. someTimeOnly

    Validation control problem

    when i run my project locally, it's validation controls perform validation but when i upload it to server it's validation controls: 1. perform validation when I don't use any coding in mysomebutton. 2. do not perform validation when mysomebutton has coding of...
  4. someTimeOnly

    Creating a link that includes a querystring variable.

    hm, it's working <asp:Repeater id="Repeater1" runat="server"> <ItemTemplate> <li> <%# DataBinder.Eval(Container.DataItem,"Value")%> <br> <a href="some.aspx?id=<%#whatToPlaceHere()%>">link</a><br> </li> </ItemTemplate> </asp:Repeater> Thanx
  5. someTimeOnly

    Creating a link that includes a querystring variable.

    Please help, having same issu How to change link's href dynamically, say something like this <asp:Repeater id="Repeater1" runat="server"> <ItemTemplate> <li> <%# DataBinder.Eval(Container.DataItem,"Value")%> <br> <a href='<%#whatToPlaceHere()%>'>link</a><br> </li> </ItemTemplate>...
  6. someTimeOnly

    Cann't access selected value in selection changed event of dropDown?

    ok, I'll give detail of my problem later as I'm not having code right here.
  7. someTimeOnly

    Cann't access selected value in selection changed event of dropDown?

    very strange, I cann't access ddMydorpDown.selected value in its selection changed event. I want to query to database in the selection chaged event on the basis of new selected value of dropdown. What am i missing? Please, let me know.
  8. someTimeOnly

    How to add &quot;submit button&quot; in htmlform control?

    hm, I think I couldn't make my problem clear. Acutally, I'm not using response.write for creating form. Instead, I'm asking an equivalent of this. Write("<form id='myID' method='post' action='that.aspx >") using the following approach. I'm coding things this way. // Create a new HtmlForm...
  9. someTimeOnly

    How to add &quot;submit button&quot; in htmlform control?

    say what is the equivalent code of the following code response.Write("<form id='myID' method='post' action='that.aspx>") using htmlform and adding to it an htmlinputbutton control to post the data.
  10. someTimeOnly

    How to display XML in webform?

    What's wrong here. Why it's not being displayed with label control. private void Page_Load(object sender, System.EventArgs e) { XmlDocument doc = new XmlDocument(); string xmlData = "<bookxmlns:bk='urn:samples'></book>"; doc.Load(new StringReader(xmlData)); Label1.Text =...
  11. someTimeOnly

    How to configure a project remotely?(urgent & basic)

    http://www.eggheadcafe.com/ng/microsoft.public.dotnet.faqs/post21344948.asp is mentioning this issue I think, but couldn't understand. Anyone outthere to resolve the issue.
  12. someTimeOnly

    How to configure a project remotely?(urgent & basic)

    oh sorry for mentioning urgent, seems against the rules. Anyhow it is!!!!!!!!!!!
  13. someTimeOnly

    How to configure a project remotely?(urgent & basic)

    How to configure a project remotely? say i make a simple asp.net web project. Ok it's being accessed http://localhost/myProj/default.aspx now there is a ftp server available. so how to take it on my ftp server. How will i configure it?
  14. someTimeOnly

    Could not load type 'MyProj.Global'

    i've get rid of this problem. Actually a couple of Resouces were marked yellow, so i re-added them and got rid of that problem. Why resources were marked yellow, not sure. Anyhow I brought the whole project folder to my pc from another pc.
  15. someTimeOnly

    Could not load type 'MyProj.Global'

    Could not load type 'MyProj.Global'. Source Error: Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="MyProj.Global" %> Im stuck with this error. Can't find a way around.

Part and Inventory Search

Back
Top